From 57ef000dbf4a4ce977f8f251803caca9409eb547 Mon Sep 17 00:00:00 2001
From: tomrink <rink@ssec.wisc.edu>
Date: Tue, 12 Dec 2023 18:11:51 -0600
Subject: [PATCH] snapshot...

---
 modules/icing/util.py | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/modules/icing/util.py b/modules/icing/util.py
index d9fd218e..3d1f9c77 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()
-- 
GitLab