From d8bb78f07fdcea92b6cc87479a3e12c5a85d0987 Mon Sep 17 00:00:00 2001 From: tomrink <rink@ssec.wisc.edu> Date: Thu, 29 Jul 2021 13:24:10 -0500 Subject: [PATCH] minor --- modules/icing/pirep_goes.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/icing/pirep_goes.py b/modules/icing/pirep_goes.py index 685a0121..1b358b7b 100644 --- a/modules/icing/pirep_goes.py +++ b/modules/icing/pirep_goes.py @@ -539,8 +539,8 @@ def process(ice_dct, no_ice_dct, neg_ice_dct): print('1: ', ice_keys_1.shape[0]) print('0: ', no_intensity_cnt) - ice_keys = np.concatenate([ice_keys_5_6, ice_keys_1, ice_keys_2, ice_keys_3, ice_keys_4]) - ice_tidx = np.concatenate([ice_tidx_5_6, ice_tidx_1, ice_tidx_2, ice_tidx_3, ice_tidx_4]) + ice_keys = np.concatenate([ice_keys_1, ice_keys_2, ice_keys_3, ice_keys_4, ice_keys_5_6]) + ice_tidx = np.concatenate([ice_tidx_1, ice_tidx_2, ice_tidx_3, ice_tidx_4, ice_tidx_5_6]) print('icing total reduced: ', ice_tidx.shape) sidxs = np.argsort(ice_keys) -- GitLab