diff --git a/modules/icing/pirep_goes.py b/modules/icing/pirep_goes.py
index eb8e2e3985b1e42140dcb0e61816e806e9b394c4..db5cbbeb5cfcb62a696bc10191302062f5738f4f 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])