From 6ff384788e5995be074ae7ebf9072b7066248c89 Mon Sep 17 00:00:00 2001 From: tomrink <rink@ssec.wisc.edu> Date: Tue, 9 Mar 2021 21:00:21 -0600 Subject: [PATCH] snapshot... --- modules/icing/pirep_goes.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/modules/icing/pirep_goes.py b/modules/icing/pirep_goes.py index 680e20ff..5bf904ce 100644 --- a/modules/icing/pirep_goes.py +++ b/modules/icing/pirep_goes.py @@ -195,6 +195,12 @@ def analyze(ice_dct, no_ice_dct): except Exception: continue + ice_times = np.array(ice_times) + no_ice_times = np.array(no_ice_times) + + itrsct_vals, comm1, comm2 = np.intersect1d(no_ice_times, ice_times, return_indices=True) + print(itrsct_vals.shape, comm1.shape, comm2.shape) + def create_file(filename, ds_list, ds_types): pass \ No newline at end of file -- GitLab