diff --git a/modules/icing/pirep_goes.py b/modules/icing/pirep_goes.py
index 1ba250de19072f07c73e88a744e758c4ac34f236..d10d5156bc51bc561d5f4b85970e063161e587de 100644
--- a/modules/icing/pirep_goes.py
+++ b/modules/icing/pirep_goes.py
@@ -2438,7 +2438,7 @@ def run_icing_predict_fcn(clvrx_dir='/Users/tomrink/data/clavrx/RadC/', output_d
 
         if (day_night == 'AUTO' or day_night == 'DAY') and num_day_tiles > 0:
 
-            preds_day_dct, probs_day_dct = run_evaluate_static_fcn(data_dct, day_model_path,
+            preds_day_dct, probs_day_dct = run_evaluate_static_fcn(data_dct, 1, day_model_path,
                                                                    day_night='DAY', l1b_or_l2=l1b_andor_l2,
                                                                    prob_thresh=prob_thresh,
                                                                    use_flight_altitude=use_flight_altitude,
@@ -2452,7 +2452,7 @@ def run_icing_predict_fcn(clvrx_dir='/Users/tomrink/data/clavrx/RadC/', output_d
                 fd_probs[day_idxs] = probs[day_idxs]
 
         if (day_night == 'AUTO' or day_night == 'NIGHT') and num_nght_tiles > 0:
-            preds_nght_dct, probs_nght_dct = run_evaluate_static_fcn(data_dct, night_model_path,
+            preds_nght_dct, probs_nght_dct = run_evaluate_static_fcn(data_dct, 1, night_model_path,
                                                                      day_night='NIGHT', l1b_or_l2=l1b_andor_l2,
                                                                      prob_thresh=prob_thresh,
                                                                      use_flight_altitude=use_flight_altitude,