From 2a2f6939113f85a2b1c06f1462ea094ffeee4239 Mon Sep 17 00:00:00 2001
From: tomrink <rink@ssec.wisc.edu>
Date: Thu, 18 Mar 2021 12:29:56 -0500
Subject: [PATCH] updates for icing intensity

---
 modules/icing/pirep_goes.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/modules/icing/pirep_goes.py b/modules/icing/pirep_goes.py
index 3a8a66c6..3b7aeb06 100644
--- a/modules/icing/pirep_goes.py
+++ b/modules/icing/pirep_goes.py
@@ -440,7 +440,8 @@ def analyze_all(ice_dct, no_ice_dct, neg_ice_dct):
     ice_times_1 = ice_times_1[0:5000]
 
     ice_times = np.concatenate([ice_times_5_6, ice_times_1, ice_times_2, ice_times_3, ice_times_4])
-    uniq_sorted, _, _, _ = np.unique(ice_times)
+    uniq_sorted = np.unique(ice_times)
+    print(ice_times.shape, uniq_sorted.shape)
 
     no_ice_times = np.array(no_ice_times)
     neg_ice_times = np.array(neg_ice_times)
-- 
GitLab