From 5a66d64313a6b9eddcfd3f3a9898929220af41e2 Mon Sep 17 00:00:00 2001 From: tomrink <rink@ssec.wisc.edu> Date: Thu, 13 Oct 2022 10:33:30 -0500 Subject: [PATCH] snapshot... --- modules/deeplearning/srcnn_l1b_l2.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/modules/deeplearning/srcnn_l1b_l2.py b/modules/deeplearning/srcnn_l1b_l2.py index 9dce8d2b..df345514 100644 --- a/modules/deeplearning/srcnn_l1b_l2.py +++ b/modules/deeplearning/srcnn_l1b_l2.py @@ -676,11 +676,14 @@ def run_restore_static(directory, ckpt_dir): def run_evaluate_static(in_file, out_file, ckpt_dir): h5f = h5py.File(in_file, 'r') grd_a = get_grid_values_all(h5f, 'temp_11_0um_nom') + grd_a = grd_a[2432:4032, 2432:4032] grd_a = grd_a[::2, ::2] grd_b = get_grid_values_all(h5f, 'refl_0_65um_nom') + grd_b = grd_b[2432:4032, 2432:4032] grd_c = get_grid_values_all(h5f, 'cloud_fraction') + grd_c = grd_c[2432:4032, 2432:4032] grd_c = grd_c[::2, ::2] leny, lenx = grd_a.shape -- GitLab