diff --git a/modules/aeolus/aeolus_amv.py b/modules/aeolus/aeolus_amv.py index f2087dd3391826451714a948926fe68dfe94f93b..280b93926f5242b8a262263bf8fcf043ce4c0f1e 100644 --- a/modules/aeolus/aeolus_amv.py +++ b/modules/aeolus/aeolus_amv.py @@ -430,7 +430,6 @@ def run_best_fit_all(): prd_files = FrameworkCloudHeight('/apollo/cloud/scratch/AMV_BUST/FMWK_TEST3/', 10) raob_dir = '/home/rink/data/raob/' - raob_files = ['raob_soundings20191117_0000.cdf', 'raob_soundings20191118_0000.cdf', 'raob_soundings20191119_0000.cdf', @@ -446,21 +445,6 @@ def run_best_fit_all(): 'raob_soundings20191129_0000.cdf', 'raob_soundings20191130_0000.cdf'] - raob_dtsts = ['2019-11-17_00:00', - '2019-11-18_00:00', - '2019-11-19_00:00', - '2019-11-20_00:00', - '2019-11-21_00:00', - '2019-11-22_00:00', - '2019-11-23_00:00', - '2019-11-24_00:00', - '2019-11-25_00:00', - '2019-11-26_00:00', - '2019-11-27_00:00', - '2019-11-28_00:00', - '2019-11-29_00:00', - '2019-11-30_00:00'] - gfs_dir = '/home/rink/data/gfs/' gfs_files = ['gfs.19111612_F012.h5', 'gfs.19111712_F012.h5', @@ -483,7 +467,7 @@ def run_best_fit_all(): bf_gfs_list = [] amv_prod_list = [] for k, file in enumerate(raob_files): - raob_dct, ts = get_raob_dict_cdf(raob_dir+file, raob_dtsts[k]) + raob_dct, ts = get_raob_dict_cdf(raob_dir+file) m_d = match_amvs_to_raobs(raob_dct, ts, amv_files=amv_files) amvs_list, bf_list, raob_match_list, bf_gfs_list = run_best_fit(m_d, raob_dct, gfs_dir+gfs_files[k], amvs_list=amvs_list, bf_list=bf_list, raob_match_list=raob_match_list, bf_gfs_list=bf_gfs_list)