From 908a6f0ea9abaeea998eb233ee2cbc3e3a132fcc Mon Sep 17 00:00:00 2001 From: tomrink <rink@ssec.wisc.edu> Date: Mon, 19 Dec 2022 10:41:59 -0600 Subject: [PATCH] snapshot... --- modules/util/util.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/modules/util/util.py b/modules/util/util.py index 848e988f..8ad1d742 100644 --- a/modules/util/util.py +++ b/modules/util/util.py @@ -1439,6 +1439,11 @@ def smooth_2d(z, sigma=1.0): return np.stack(z_smoothed) +# For [Y, X], see above +def smooth_2d_single(z, sigma=1.0): + return gaussian_filter(z, sigma=sigma) + + def get_training_parameters(day_night='DAY', l1b_andor_l2='both', satellite='GOES16', use_dnb=False): if day_night == 'DAY': train_params_l2 = ['cld_height_acha', 'cld_geo_thick', 'cld_temp_acha', 'cld_press_acha', 'supercooled_cloud_fraction', -- GitLab