From e3409d448f81c68da92bda1ea4ef614302ee86d4 Mon Sep 17 00:00:00 2001 From: tomrink <rink@ssec.wisc.edu> Date: Fri, 5 Mar 2021 11:01:45 -0600 Subject: [PATCH] snapshot... --- modules/icing/pirep_goes.py | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/modules/icing/pirep_goes.py b/modules/icing/pirep_goes.py index 1dcd1530..df5d105e 100644 --- a/modules/icing/pirep_goes.py +++ b/modules/icing/pirep_goes.py @@ -11,15 +11,16 @@ clavrx_dir = '/apollo/cloud/scratch/ICING/' dir_fmt = '%Y_%m_%d_%j' # dir_list = [f.path for f in os.scandir('.') if f.is_dir()] ds_dct = {} - +ice_dict = None +no_ice_dict = None +time_keys = None pirep_file = '/home/rink/data/pireps/pireps_2019010000_2019063023.csv' -ice_dict, no_ice_dict = pirep_icing(pirep_file) -print('num obs: ice, no ice', len(ice_dict), len(no_ice_dict)) - -time_keys = list(ice_dict.keys()) -hist = np.zeros(20) +def setup(): + ice_dict, no_ice_dict = pirep_icing(pirep_file) + print('num obs: ice, no ice', len(ice_dict), len(no_ice_dict)) + time_keys = list(ice_dict.keys()) def get_clavrx_datasource(timestamp): @@ -41,7 +42,7 @@ def get_grid_values(h5f, grid_name, j_c, i_c, half_width, scale_factor_name='sca if j_l < 0 or i_l < 0: return None j_r = j_c+half_width+1 - i_r = j_c+half_width+1 + i_r = i_c+half_width+1 if j_r >= ylen or i_r >= xlen: return None -- GitLab