Skip to content
Snippets Groups Projects
Commit 59ab78d4 authored by tomrink's avatar tomrink
Browse files

snapshot...

parent 8f09dd65
No related branches found
No related tags found
No related merge requests found
...@@ -157,6 +157,24 @@ class CLAVRx_H08(Files): ...@@ -157,6 +157,24 @@ class CLAVRx_H08(Files):
return None return None
class CLAVRx_CALIPSO(Files):
def __init__(self, files_path):
super().__init__(files_path, 10, '*_06kmCLay.matchup.calipso.h5')
self.params = ['cld_opd_acha', 'cld_reff_acha', 'cld_temp_acha', 'cld_press_acha', 'cld_height_acha']
# self.params = get_parameters_clavrx()
def get_datetime(self, pathname):
filename = os.path.split(pathname)[1]
dto = datetime.datetime.strptime(filename, 'g16_s%Y%j%H%M_06kmCLay.matchup.calipso.h5').replace(tzinfo=timezone.utc)
return dto
def get_parameters(self):
return self.params
def get_navigation(self, h5f):
return None
class CLAVRx_VIIRS(Files): class CLAVRx_VIIRS(Files):
def __init__(self, files_path): def __init__(self, files_path):
super().__init__(files_path, 5, 'clavrx*viirs*level2.h5') super().__init__(files_path, 5, 'clavrx*viirs*level2.h5')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment