From c7af42c861c98cf722cbd73f1f7f1ff914f278e5 Mon Sep 17 00:00:00 2001
From: tomrink <rink@ssec.wisc.edu>
Date: Wed, 11 Jan 2023 14:18:12 -0600
Subject: [PATCH] snapshot...

---
 modules/icing/pirep_goes.py | 37 -------------------------------------
 1 file changed, 37 deletions(-)

diff --git a/modules/icing/pirep_goes.py b/modules/icing/pirep_goes.py
index eb8e2e39..db5cbbeb 100644
--- a/modules/icing/pirep_goes.py
+++ b/modules/icing/pirep_goes.py
@@ -751,24 +751,6 @@ def process(ice_dct, no_ice_dct, neg_ice_dct, t_delta=600):
     ice_keys = ice_keys[sidxs]
     ice_tidx = ice_tidx[sidxs]
 
-    # grd_bins = np.full((lat_space_hdeg.shape[0], lon_space_hdeg.shape[0]), -(t_delta+1))
-    # cnt = 0
-    # for idx, key in enumerate(ice_keys):
-    #     rpts = ice_dct[key]
-    #
-    #     tup = rpts[ice_tidx[idx]]
-    #     lat, lon = tup[0], tup[1]
-    #     if not check_no_overlap(lon, lat, key, grd_bins, t_delta=t_delta):
-    #         continue
-    #     cnt += 1
-    #
-    #     n_rpts = new_ice_dct.get(key)
-    #     if n_rpts is None:
-    #         n_rpts = []
-    #         new_ice_dct[key] = n_rpts
-    #     n_rpts.append(tup)
-    # print('icing total no overlap: ', cnt)
-
     # -----------------------------------------------------
     no_ice_keys = np.array(no_ice_keys)
     no_ice_tidx = np.array(no_ice_tidx)
@@ -786,25 +768,6 @@ def process(ice_dct, no_ice_dct, neg_ice_dct, t_delta=600):
     no_ice_keys = no_ice_keys[sidxs]
     no_ice_tidx = no_ice_tidx[sidxs]
 
-    # grd_bins = np.full((lat_space_hdeg.shape[0], lon_space_hdeg.shape[0]), -(t_delta+1))
-    # cnt = 0
-    # for idx, key in enumerate(no_ice_keys):
-    #     rpts = no_ice_dct[key]
-    #     tup = rpts[no_ice_tidx[idx]]
-    #
-    #     lat, lon = tup[0], tup[1]
-    #     if not check_no_overlap(lon, lat, key, grd_bins, t_delta=t_delta):
-    #         continue
-    #     cnt += 1
-    #
-    #     n_rpts = new_no_ice_dct.get(key)
-    #     if n_rpts is None:
-    #         n_rpts = []
-    #         new_no_ice_dct[key] = n_rpts
-    #     n_rpts.append(tup)
-    # print('no icing total no overlap: ', cnt)
-    # -------------------------------------------------
-
     all_which = np.concatenate([np.full(len(ice_keys), 1), np.full(len(no_ice_keys), 0)])
     all_keys = np.concatenate([ice_keys, no_ice_keys])
     all_tidx = np.concatenate([ice_tidx, no_ice_tidx])
-- 
GitLab