diff --git a/modules/icing/pirep_goes.py b/modules/icing/pirep_goes.py index 376a28c2a924827787abee505fa5c00721dcd21c..5388ef3432b0c90c2348a15d92705ab03c2ed09c 100644 --- a/modules/icing/pirep_goes.py +++ b/modules/icing/pirep_goes.py @@ -2258,7 +2258,7 @@ def run_icing_predict(clvrx_dir='/Users/tomrink/data/clavrx/RadC/', output_dir=h day_grd_dct[ds_name] = np.stack(day_data_dct[ds_name]) preds_day_dct, probs_day_dct = run_evaluate_static(day_grd_dct, num_day_tiles, day_model_path, - day_night='DAY', lib_or_l2=l1b_andor_l2, prob_thresh=prob_thresh, + day_night='DAY', l1b_or_l2=l1b_andor_l2, prob_thresh=prob_thresh, use_flight_altitude=use_flight_altitude, flight_levels=flight_levels) day_idxs = np.array(day_idxs) @@ -2281,7 +2281,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 = run_evaluate_static(nght_grd_dct, num_nght_tiles, night_model_path, - day_night='NIGHT', lib_or_l2=l1b_andor_l2, prob_thresh=prob_thresh, + day_night='NIGHT', l1b_or_l2=l1b_andor_l2, prob_thresh=prob_thresh, use_flight_altitude=use_flight_altitude, flight_levels=flight_levels) nght_idxs = np.array(nght_idxs)