From b6914fa7734dd2036936fff4800e0ffc38d236fc Mon Sep 17 00:00:00 2001
From: tomrink <rink@ssec.wisc.edu>
Date: Fri, 14 Jul 2023 13:55:06 -0500
Subject: [PATCH] `snapshot...`

---
 modules/util/abi_surfrad.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/modules/util/abi_surfrad.py b/modules/util/abi_surfrad.py
index a82c8ba9..1a4f1178 100644
--- a/modules/util/abi_surfrad.py
+++ b/modules/util/abi_surfrad.py
@@ -68,8 +68,8 @@ def process_cld_opd(grd_k):
     keep_cld = np.where(keep, np.logical_and(2.0 < grd_k, grd_k < 158.0), False)
     # keep_cld = np.where(keep, 2.0 < grd_k, False)
     frac_cld = np.sum(keep_cld)/num_keep
-    # if not (0.40 < frac_cld):
-    if not (0.10 < frac_cld < 0.90):
+    # if not (0.10 < frac_cld < 0.90):
+    if not (0.20 < frac_cld):
         return None
     grd_k = np.where(np.invert(keep), 0, grd_k)  # Convert NaN to 0
     return grd_k
-- 
GitLab