From 0ee15f4beb1ecc815b9b63595e0f792525563b8c Mon Sep 17 00:00:00 2001 From: tomrink <rink@ssec.wisc.edu> Date: Tue, 19 Jul 2022 15:09:25 -0500 Subject: [PATCH] fix bug --- modules/icing/util.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/modules/icing/util.py b/modules/icing/util.py index 9c8af1e5..5550385a 100644 --- a/modules/icing/util.py +++ b/modules/icing/util.py @@ -181,9 +181,11 @@ def run_icing_predict(clvrx_dir='/Users/tomrink/data/clavrx/RadC/', output_dir=h if (day_night == 'AUTO' or day_night == 'NIGHT') and num_nght_tiles > 0: model_path = night_model_path + + mode = 'NIGHT' if use_dnb and lunar_illuminated: model_path = day_model_path - day = 'DAY' + mode = 'DAY' nght_train_params = train_params_dnb nght_data_dct = {name: [] for name in nght_train_params} @@ -195,7 +197,7 @@ def run_icing_predict(clvrx_dir='/Users/tomrink/data/clavrx/RadC/', output_dir=h nght_grd_dct[ds_name] = np.stack(nght_data_dct[ds_name]) preds_nght_dct, probs_nght_dct = model_module.run_evaluate_static(nght_grd_dct, num_nght_tiles, model_path, - day_night=day, l1b_or_l2=l1b_andor_l2, + day_night=mode, l1b_or_l2=l1b_andor_l2, prob_thresh=prob_thresh, use_flight_altitude=use_flight_altitude, flight_levels=flight_levels) -- GitLab