Skip to content
Snippets Groups Projects
Commit 5563614c authored by tomrink's avatar tomrink
Browse files

snapshot

parent 4757118b
No related branches found
Tags gcp-r20210105_1657
No related merge requests found
...@@ -183,6 +183,24 @@ class CLAVRx_H08(Files): ...@@ -183,6 +183,24 @@ class CLAVRx_H08(Files):
return None return None
class CLAVRx_H09(Files):
def __init__(self, files_path, pattern='clavrx_H09*.level2.nc'):
super().__init__(files_path, 10, pattern)
self.params = get_parameters_clavrx()
def get_datetime(self, pathname):
filename = os.path.split(pathname)[1]
dt_str = filename[11:24]
dto = datetime.datetime.strptime(dt_str, '%Y%m%d_%H%M').replace(tzinfo=timezone.utc)
return dto
def get_parameters(self):
return self.params
def get_navigation(self, h5f):
return None
class CLAVRx_CALIPSO(Files): class CLAVRx_CALIPSO(Files):
def __init__(self, files_path, pattern='*_06kmCLay.matchup.calipso.h5'): def __init__(self, files_path, pattern='*_06kmCLay.matchup.calipso.h5'):
super().__init__(files_path, 10, pattern) super().__init__(files_path, 10, pattern)
......
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