From 2d8eeef30cbc9ac0682ddda2f1f06f02a2bbdbc0 Mon Sep 17 00:00:00 2001 From: tomrink <rink@ssec.wisc.edu> Date: Fri, 16 Dec 2022 12:06:51 -0600 Subject: [PATCH] snapshot... --- modules/icing/pirep_goes.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/modules/icing/pirep_goes.py b/modules/icing/pirep_goes.py index 07025cb2..9e17a937 100644 --- a/modules/icing/pirep_goes.py +++ b/modules/icing/pirep_goes.py @@ -1232,7 +1232,7 @@ def apply_qc_icing_pireps(icing_alt, cld_top_hgt, cld_geo_dz, cld_phase, cld_opd opd_thin_threshold = 0.1 closeness_top = 100.0 # meters - max_cld_depth = 1500.0 + max_cld_depth = 2000.0 max_altitude = 5000.0 max_cld_altitude = 5000.0 @@ -1257,8 +1257,8 @@ def apply_qc_icing_pireps(icing_alt, cld_top_hgt, cld_geo_dz, cld_phase, cld_opd # if not (is_day(solzen[i,]) or is_night(solzen[i,])): # continue - if not (icing_alt[i] < max_altitude): - continue + # if not (icing_alt[i] < max_altitude): + # continue keep_0 = np.logical_or(cld_mask[i,] == 2, cld_mask[i,] == 3) # cloudy keep_1 = np.invert(np.isnan(cld_top_hgt[i,])) @@ -1285,7 +1285,7 @@ def apply_qc_icing_pireps(icing_alt, cld_top_hgt, cld_geo_dz, cld_phase, cld_opd cld_tmp = cld_top_temp[i, ].flatten() med_cld_tmp = np.median(cld_tmp[keep]) - if med_cld_tmp > 274.5: + if med_cld_tmp > 275.0: continue if icing_alt[i] < med_cld_hgt - max_cld_depth: @@ -1333,8 +1333,8 @@ def apply_qc_no_icing_pireps(icing_alt, cld_top_hgt, cld_geo_dz, cld_phase, cld_ # if not (is_day(solzen[i,]) or is_night(solzen[i,])): # continue - if not (icing_alt[i] < max_altitude): - continue + # if not (icing_alt[i] < max_altitude): + # continue keep_0 = np.logical_or(cld_mask[i,] == 2, cld_mask[i,] == 3) # cloudy keep_1 = np.invert(np.isnan(cld_top_hgt[i,])) @@ -1361,7 +1361,7 @@ def apply_qc_no_icing_pireps(icing_alt, cld_top_hgt, cld_geo_dz, cld_phase, cld_ cld_tmp = cld_top_temp[i, ].flatten() med_cld_tmp = np.median(cld_tmp[keep]) - if med_cld_tmp > 274.5: + if med_cld_tmp > 275.0: continue if icing_alt[i] < med_cld_hgt - max_cld_depth: -- GitLab