diff --git a/modules/icing/pirep_goes.py b/modules/icing/pirep_goes.py
index 022ad8e1f99d9e4894d927086cedc25369b64cff..1d4e4a5558bff3a6d6375658a5066ee68d8788f3 100644
--- a/modules/icing/pirep_goes.py
+++ b/modules/icing/pirep_goes.py
@@ -1501,8 +1501,8 @@ def apply_qc_icing_pireps_v3(icing_alt, cld_top_hgt, cld_geo_dz, cld_phase, cld_
         if num_keep / nx_x_ny < cloudy_frac:  # At least this fraction cloudy
             continue
 
-        if icing_alt[i,] > max_altitude:
-            continue
+        # if icing_alt[i,] > max_altitude:
+        #     continue
 
         # ctt_mean = np.nanmean(cld_top_temp[i,])
         # if ctt_mean > 274.0:
@@ -1512,7 +1512,7 @@ def apply_qc_icing_pireps_v3(icing_alt, cld_top_hgt, cld_geo_dz, cld_phase, cld_
         # if not (closeness_top+cth_mean > icing_alt[i,] > cth_mean - max_cld_depth):
         #     continue
 
-        keep = np.where(keep, cld_top_hgt[i,] < max_cld_altitude, False)
+        # keep = np.where(keep, cld_top_hgt[i,] < max_cld_altitude, False)
 
         keep = np.where(keep, np.logical_and((cld_top_hgt[i,] + closeness_top) > icing_alt[i,],
                                   (cld_top_hgt[i,] - max_cld_depth) < icing_alt[i,]), False)