diff --git a/modules/icing/pirep_goes.py b/modules/icing/pirep_goes.py index e320a55ef2a92488eb80c57c1e15fb5413edefa3..3c953de929e8b1a4ab97f8d50281d959edf7275d 100644 --- a/modules/icing/pirep_goes.py +++ b/modules/icing/pirep_goes.py @@ -2255,7 +2255,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', prob_thresh=prob_thresh, + day_night='DAY', lib_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) @@ -2278,7 +2278,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', prob_thresh=prob_thresh, + day_night='NIGHT', lib_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) @@ -2394,7 +2394,7 @@ def run_icing_predict_image(clvrx_dir='/Users/tomrink/data/clavrx/RadC/', output 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', prob_thresh=prob_thresh, + day_night='DAY', lib_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) @@ -2417,7 +2417,7 @@ def run_icing_predict_image(clvrx_dir='/Users/tomrink/data/clavrx/RadC/', output 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', prob_thresh=prob_thresh, + day_night='NIGHT', lib_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)