From b8e1f1c2ac0cae48f2dd9fa3e309d7d49219b666 Mon Sep 17 00:00:00 2001 From: tomrink <rink@ssec.wisc.edu> Date: Mon, 25 Apr 2022 11:18:22 -0500 Subject: [PATCH] snapshot... --- modules/icing/util.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/icing/util.py b/modules/icing/util.py index 0df51f9a..6dedb02d 100644 --- a/modules/icing/util.py +++ b/modules/icing/util.py @@ -48,7 +48,7 @@ flt_level_ranges[4] = [8000.0, 15000.0] def run_icing_predict(clvrx_dir='/Users/tomrink/data/clavrx/RadC/', output_dir=homedir, day_model_path=model_path_day, night_model_path=model_path_night, prob_thresh=0.5, satellite='GOES16', domain='CONUS', day_night='AUTO', - l1b_andor_l2='both', use_flight_altitude=True, res_fac=1, use_nan=False, model_type='CNN'): + l1b_andor_l2='both', use_flight_altitude=True, res_fac=1, use_nan=False, has_time=False, model_type='CNN'): if model_type == 'CNN': model_module = icing_cnn elif model_type == 'FCN': @@ -178,7 +178,7 @@ def run_icing_predict(clvrx_dir='/Users/tomrink/data/clavrx/RadC/', output_dir=h write_icing_file_nc4(clvrx_str_time, output_dir, preds_2d_dct, probs_2d_dct, x_rad, y_rad, lons_2d, lats_2d, cc, ll, - satellite=satellite, domain=domain, use_nan=use_nan, prob_thresh=prob_thresh) + satellite=satellite, domain=domain, use_nan=use_nan, has_time=has_time, prob_thresh=prob_thresh) print('Done: ', clvrx_str_time) h5f.close() -- GitLab