From bf60c47f6493db198e934f45c509535149d67239 Mon Sep 17 00:00:00 2001
From: tomrink <rink@ssec.wisc.edu>
Date: Mon, 23 Oct 2023 13:06:46 -0500
Subject: [PATCH] snapshot...

---
 modules/icing/pirep_goes.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/icing/pirep_goes.py b/modules/icing/pirep_goes.py
index 2482bdf7..0742e647 100644
--- a/modules/icing/pirep_goes.py
+++ b/modules/icing/pirep_goes.py
@@ -1335,7 +1335,7 @@ def apply_qc_icing_pireps_exp1(icing_alt, cld_top_hgt, cld_geo_dz, cld_phase, cl
         num_keep = np.sum(keep)
         if num_keep == 0:
             continue
-        if num_keep / nx_x_ny < cloud_frac:  # 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