From 033d6548590ec1cb78fef3f2c262a1cf39f78494 Mon Sep 17 00:00:00 2001 From: rink <rink@ssec.wisc.edu> Date: Mon, 12 Oct 2020 16:25:00 -0500 Subject: [PATCH] snapshot.. --- modules/aeolus/aeolus_amv.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/modules/aeolus/aeolus_amv.py b/modules/aeolus/aeolus_amv.py index 6aea4548..c496c8ad 100644 --- a/modules/aeolus/aeolus_amv.py +++ b/modules/aeolus/aeolus_amv.py @@ -378,14 +378,12 @@ sub_lon = -137.0 # GOES-17 # return dict: aeolus time -> tuple (amv_lon, amv_lat, amv_pres, amv_spd, amv_dir) def match_amvs_to_aeolus(aeolus_dict, amv_files_path, amv_source='OPS', band='14', amv_files=None): nav = amv_files.get_navigation() - #nav = GEOSNavigation(sub_lon=sub_lon) match_dict = {} keys = list(aeolus_dict.keys()) last_f_idx = -1 for key in keys: - #fname, ftime, f_idx = get_file_containing_time(key, amv_files_path, amv_file_duration, amv_source, band) fname, ftime, f_idx = amv_files.get_file_containing_time(key) if f_idx is None: continue @@ -534,7 +532,6 @@ def create_amv_to_aeolus_match_file(aeolus_files_dir, amv_files_dir, outfile=Non if amv_source == 'CARR': amv_files = CarrStereo(amv_files_dir, 60, band) - #m_d = match_amvs_to_aeolus(a_d, amv_files_dir, amv_source, band) m_d = match_amvs_to_aeolus(a_d, amv_files_dir, amv_source, band, amv_files) if outfile is not None: -- GitLab