From 64faf5086faee6d15fd052fa9ef838cfb1f75e95 Mon Sep 17 00:00:00 2001 From: tomrink <rink@ssec.wisc.edu> Date: Thu, 5 May 2022 13:13:43 -0500 Subject: [PATCH] snapshot... --- modules/util/viirs.py | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/modules/util/viirs.py b/modules/util/viirs.py index 95fe0d24..b83e4b7d 100644 --- a/modules/util/viirs.py +++ b/modules/util/viirs.py @@ -1,6 +1,6 @@ import numpy as np import h5py -from util.util import get_grid_values +from util.util import get_grid_values, get_grid_values_all import glob mod_res_params = ['M07', 'M08', 'M10', 'M12', 'M13', 'M14', 'M15', 'M16'] @@ -70,3 +70,14 @@ def run(mod_res_filename, img_res_filename, mod_tiles, img_tiles): img_h5f.close() +def run_test(directory): + files = glob.glob(directory + 'clavrx_snpp_viirs*.h5') + + for file in files: + h5f = h5py.File(file, 'r') + opd_nl = get_grid_values_all(h5f, 'cld_opd_nlcomp') + reff_nl = get_grid_values_all(h5f, 'cld_reff_nlcomp') + + if np.sum(np.isnan(opd_nl)) < opd_nl.size and np.sum(np.isnan(reff_nl)) < reff_nl.size: + print(file) + -- GitLab