From a3afee6033aeff5d1c3cb7aa758607bc9705d5e9 Mon Sep 17 00:00:00 2001 From: rink <rink@ssec.wisc.edu> Date: Mon, 12 Oct 2020 10:57:16 -0500 Subject: [PATCH] snapshot.. --- modules/aeolus/aeolus_amv.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/aeolus/aeolus_amv.py b/modules/aeolus/aeolus_amv.py index d3ee930c..46248d93 100644 --- a/modules/aeolus/aeolus_amv.py +++ b/modules/aeolus/aeolus_amv.py @@ -59,7 +59,7 @@ class AMVFiles: class Framework(AMVFiles): def __init__(self, files_path, file_time_span, band='14'): - super().__init__(self, 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) @@ -77,7 +77,7 @@ class Framework(AMVFiles): class OPS(AMVFiles): def __init__(self, files_path, file_time_span, band='14'): - super().__init__(self, files_path, file_time_span, 'OR_ABI-L2-DMWF*'+'C'+band+'*.nc', band) + super().__init__(files_path, file_time_span, 'OR_ABI-L2-DMWF*'+'C'+band+'*.nc', band) def get_navigation(self): return 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__(self, 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): return GEOSNavigation(sub_lon=-137.0) -- GitLab