diff --git a/modules/icing/util.py b/modules/icing/util.py index d9fd218ea54f53bd23420299c62b40d9ad241611..3d1f9c77d5a318af67bc14ba7dc07c0aeca06b89 100644 --- a/modules/icing/util.py +++ b/modules/icing/util.py @@ -1033,7 +1033,6 @@ def run_icing_predict_fcn(clvrx_dir='/Users/tomrink/data/clavrx/RadC/', output_d preds_day_dct, probs_day_dct = icing_fcn.run_evaluate_static_2(day_model, data_dct, 1, prob_thresh=prob_thresh, - use_flight_altitude=use_flight_altitude, flight_levels=flight_levels) for flvl in flight_levels: preds = (preds_day_dct[flvl]).flatten() @@ -1046,7 +1045,6 @@ def run_icing_predict_fcn(clvrx_dir='/Users/tomrink/data/clavrx/RadC/', output_d if (day_night == 'AUTO' or day_night == 'NIGHT') and num_nght_tiles > 0: preds_nght_dct, probs_nght_dct = icing_fcn.run_evaluate_static_2(night_model, data_dct, 1, prob_thresh=prob_thresh, - use_flight_altitude=use_flight_altitude, flight_levels=flight_levels) for flvl in flight_levels: preds = (preds_nght_dct[flvl]).flatten() @@ -1375,7 +1373,6 @@ def run_icing_predict_image_fcn(clvrx_dir='/Users/tomrink/data/clavrx/RadC/', ou if (day_night == 'AUTO' or day_night == 'DAY') and num_day_tiles > 0: preds_day_dct, probs_day_dct = icing_fcn.run_evaluate_static_2(day_model, data_dct, 1, prob_thresh=prob_thresh, - use_flight_altitude=use_flight_altitude, flight_levels=flight_levels) for flvl in flight_levels: preds = preds_day_dct[flvl].flatten() @@ -1388,7 +1385,6 @@ def run_icing_predict_image_fcn(clvrx_dir='/Users/tomrink/data/clavrx/RadC/', ou if (day_night == 'AUTO' or day_night == 'NIGHT') and num_nght_tiles > 0: preds_nght_dct, probs_nght_dct = icing_fcn.run_evaluate_static_2(night_model, data_dct, 1, prob_thresh=prob_thresh, - use_flight_altitude=use_flight_altitude, flight_levels=flight_levels) for flvl in flight_levels: preds = preds_nght_dct[flvl].flatten()