From 575c037a45e73b40d40944c97b9491a02c269ff7 Mon Sep 17 00:00:00 2001 From: tomrink <rink@ssec.wisc.edu> Date: Mon, 19 Dec 2022 13:49:48 -0600 Subject: [PATCH] snapshot... --- modules/icing/pirep_goes.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/modules/icing/pirep_goes.py b/modules/icing/pirep_goes.py index 02611741..d8d2d95b 100644 --- a/modules/icing/pirep_goes.py +++ b/modules/icing/pirep_goes.py @@ -1012,7 +1012,7 @@ def run_daynight(filename, filename_l1b, day_night='ANY'): f_l1b.close() -def run_qc(filename, filename_l1b, day_night='ANY', pass_thresh_frac=0.20, cloudy_fraction=0.5, icing=True): +def run_qc(filename, filename_l1b, day_night='ANY', pass_thresh_frac=0.20, cloudy_frac=0.5, icing=True): f = h5py.File(filename, 'r') icing_alt = f['icing_altitude'][:] @@ -1034,9 +1034,9 @@ def run_qc(filename, filename_l1b, day_night='ANY', pass_thresh_frac=0.20, cloud bt_11um = f_l1b['temp_11_0um_nom'][:, y_a:y_b, x_a:x_b] if icing: - mask, idxs, num_tested = apply_qc_icing_pireps(icing_alt, cld_top_hgt, cld_geo_dz, cld_phase, cld_opd, cld_mask, bt_11um, sol_zen, sat_zen, cld_temp, day_night=day_night, cloud_fraction=cloudy_fraction) + mask, idxs, num_tested = apply_qc_icing_pireps(icing_alt, cld_top_hgt, cld_geo_dz, cld_phase, cld_opd, cld_mask, bt_11um, sol_zen, sat_zen, cld_temp, day_night=day_night, cloud_frac=cloudy_frac) else: - mask, idxs, num_tested = apply_qc_no_icing_pireps(icing_alt, cld_top_hgt, cld_geo_dz, cld_phase, cld_opd, cld_mask, bt_11um, sol_zen, sat_zen, cld_temp, day_night=day_night, cloudy_frac=cloudy_fraction) + mask, idxs, num_tested = apply_qc_no_icing_pireps(icing_alt, cld_top_hgt, cld_geo_dz, cld_phase, cld_opd, cld_mask, bt_11um, sol_zen, sat_zen, cld_temp, day_night=day_night, cloudy_frac=cloudy_frac) keep_idxs = [] @@ -1222,7 +1222,7 @@ def run_qc(filename, filename_l1b, day_night='ANY', pass_thresh_frac=0.20, cloud # return mask, idxs, num_tested -def apply_qc_icing_pireps(icing_alt, cld_top_hgt, cld_geo_dz, cld_phase, cld_opd, cld_mask, bt_11um, solzen, satzen, cld_top_temp, day_night='ANY', cloud_fraction=0.5): +def apply_qc_icing_pireps(icing_alt, cld_top_hgt, cld_geo_dz, cld_phase, cld_opd, cld_mask, bt_11um, solzen, satzen, cld_top_temp, day_night='ANY', cloud_frac=0.5): if day_night == 'DAY': opd_thick_threshold = 20 @@ -1269,7 +1269,7 @@ def apply_qc_icing_pireps(icing_alt, cld_top_hgt, cld_geo_dz, cld_phase, cld_opd num_keep = np.sum(keep) if num_keep == 0: continue - if num_keep / nx_x_ny < cloud_fraction: # At least this fraction cloudy + if num_keep / nx_x_ny < cloud_frac: # At least this fraction cloudy continue ##keep = np.where(keep, (cld_top_hgt[i,] + closeness_top) > icing_alt[i], False) -- GitLab