From 57df36b9309af7cfa3f47728f2a7d9b693f07c5c Mon Sep 17 00:00:00 2001 From: tomrink <rink@ssec.wisc.edu> Date: Thu, 3 Jun 2021 15:05:35 -0500 Subject: [PATCH] add new match file creator --- modules/aeolus/aeolus_amv.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/aeolus/aeolus_amv.py b/modules/aeolus/aeolus_amv.py index c50578fc..511cb039 100644 --- a/modules/aeolus/aeolus_amv.py +++ b/modules/aeolus/aeolus_amv.py @@ -1461,8 +1461,8 @@ def match_aeolus_to_clavrx(aeolus_dict, clvrx_files): # if c_rng is None: # continue - param_nd = param_nd[:, cc-4:cc+5, ll-4:ll+5] - match_dict[cnt] = (key, cc, ll, f_idx, prof, param_nd) + tiles = param_nd[:, cc-4:cc+5, ll-4:ll+5] + match_dict[cnt] = (key, cc, ll, f_idx, prof, tiles) cnt += 1 -- GitLab