From e110d73b81ba05ddf114407f5eea40ce4f057737 Mon Sep 17 00:00:00 2001
From: tomrink <rink@ssec.wisc.edu>
Date: Wed, 5 Jul 2023 16:03:56 -0500
Subject: [PATCH] snapshot...

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

diff --git a/modules/util/abi_surfrad.py b/modules/util/abi_surfrad.py
index 2692acce..c2499985 100644
--- a/modules/util/abi_surfrad.py
+++ b/modules/util/abi_surfrad.py
@@ -65,7 +65,7 @@ def process_cld_prob(grd_k):
 def process_cld_opd(grd_k):
     keep = np.invert(np.isnan(grd_k))
     num_keep = np.sum(keep)
-    keep_cld = np.where(keep, np.logical_and(2.0 < grd_k, grd_k < 158.0), False)
+    keep_cld = np.where(keep, np.logical_and(1.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):
-- 
GitLab