diff --git a/modules/icing/util.py b/modules/icing/util.py index f1d00d0f43cd2474738a365dd4ec98751f8445d0..618a1ca9955a8d2d2768ec79ad112f69c28a97fd 100644 --- a/modules/icing/util.py +++ b/modules/icing/util.py @@ -181,9 +181,10 @@ def run_icing_predict(clvrx_dir='/Users/tomrink/data/clavrx/RadC/', output_dir=h bt_10_4_2d = bt_10_4.reshape((num_lines, num_elems)) - write_icing_file_nc4(clvrx_str_time, output_dir, preds_2d_dct, probs_2d_dct, bt_10_4_2d, + 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, has_time=has_time, prob_thresh=prob_thresh) + satellite=satellite, domain=domain, use_nan=use_nan, has_time=has_time, + prob_thresh=prob_thresh, bt_10_4_2d=bt_10_4_2d) print('Done: ', clvrx_str_time) h5f.close()