Skip to content
Snippets Groups Projects
Commit 6c1d528f authored by rink's avatar rink
Browse files

snapshot..

parent 7c7c946c
No related branches found
No related tags found
No related merge requests found
......@@ -36,11 +36,11 @@ class AMVFiles:
dto_end = dto + datetime.timedelta(minutes=file_time_span)
ftimes.append((dto_start.timestamp(), dto_end.timestamp()))
def get_datetime(self):
pass
def get_datetime(self, pathname):
return None
def get_navigation(self):
pass
return None
def get_file_containing_time(self, timestamp):
k = -1
......@@ -59,7 +59,7 @@ class AMVFiles:
class Framework(AMVFiles):
def __init__(self, files_path, file_time_span, band='14'):
super().__init__(files_path, file_time_span, '*WINDS_AMV_EN-' + band + '*.nc', band)
super().__init__(files_path, file_time_span, '*WINDS_AMV_EN-'+band+'*.nc', band)
def get_navigation(self):
GEOSNavigation(sub_lon=-75.0)
......@@ -94,7 +94,7 @@ class OPS(AMVFiles):
class CarrStereo(AMVFiles):
def __init__(self, files_path, file_time_span, band='14'):
super().__init__(files_path, file_time_span, '*WINDS_AMV_EN-' + band + '*.nc', band)
super().__init__(files_path, file_time_span, 'tdw_qc_GOES*'+'ch_'+band+'.nc', band)
def get_navigation(self):
return GEOSNavigation(sub_lon=-137.0)
......
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