From c87217c18c3f8610d14c9aaab5b5725385c7406b Mon Sep 17 00:00:00 2001 From: tomrink <rink@ssec.wisc.edu> Date: Mon, 29 Apr 2024 13:23:03 -0500 Subject: [PATCH] snapshot... --- modules/icing/pirep_goes.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/icing/pirep_goes.py b/modules/icing/pirep_goes.py index 022ad8e1..1d4e4a55 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) -- GitLab