From a8275c00c599359dbe0ea0bcd80b30ac798e0801 Mon Sep 17 00:00:00 2001
From: tomrink <rink@ssec.wisc.edu>
Date: Thu, 7 Jul 2022 14:05:11 -0500
Subject: [PATCH] minor...

---
 modules/icing/util.py | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/modules/icing/util.py b/modules/icing/util.py
index 82e9fba3..9c8af1e5 100644
--- a/modules/icing/util.py
+++ b/modules/icing/util.py
@@ -93,6 +93,7 @@ def run_icing_predict(clvrx_dir='/Users/tomrink/data/clavrx/RadC/', output_dir=h
         h5f = h5py.File(fname, 'r')
         dto = clvrx_ds.get_datetime(fname)
         ts = dto.timestamp()
+        lunar_illuminated = moon_phase(ts)
         clvrx_str_time = dto.strftime('%Y-%m-%d_%H:%M')
 
         if satellite == 'GOES16' or satellite == 'H08':
@@ -108,7 +109,7 @@ def run_icing_predict(clvrx_dir='/Users/tomrink/data/clavrx/RadC/', output_dir=h
                                 ['solar_zenith_angle', 'sensor_zenith_angle', 'cld_height_acha', 'cld_geo_thick', bt_fld_name],
                                 satellite=satellite, domain=domain, res_fac=res_fac)
         elif satellite == 'VIIRS':
-            if use_dnb and moon_phase(ts):
+            if use_dnb and lunar_illuminated:
                 train_params = train_params_dnb
             data_dct, ll, cc, lats_2d, lons_2d = make_for_full_domain_predict_viirs_clavrx(h5f, name_list=train_params,
                                                     day_night=day_night, res_fac=res_fac, use_dnb=use_dnb)
@@ -180,7 +181,7 @@ def run_icing_predict(clvrx_dir='/Users/tomrink/data/clavrx/RadC/', output_dir=h
 
         if (day_night == 'AUTO' or day_night == 'NIGHT') and num_nght_tiles > 0:
             model_path = night_model_path
-            if use_dnb:
+            if use_dnb and lunar_illuminated:
                 model_path = day_model_path
                 day = 'DAY'
                 nght_train_params = train_params_dnb
-- 
GitLab