From a67be7aa95e502e51c0d56718e0d6adbc64b6fdf Mon Sep 17 00:00:00 2001 From: tomrink <rink@ssec.wisc.edu> Date: Wed, 10 Mar 2021 12:07:11 -0600 Subject: [PATCH] snapshot... --- modules/icing/pirep_goes.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/modules/icing/pirep_goes.py b/modules/icing/pirep_goes.py index a2efc01a..2f863611 100644 --- a/modules/icing/pirep_goes.py +++ b/modules/icing/pirep_goes.py @@ -185,6 +185,7 @@ def analyze(ice_dct, no_ice_dct): np.random.shuffle(ice_indexes) ucomm2 = ice_indexes[comm2 != ice_indexes] ucomm2 = ucomm2[0:8000] + print(ucomm2[0:20]) files_comm = [] for i in comm2: @@ -192,7 +193,8 @@ def analyze(ice_dct, no_ice_dct): files_extra = [] times_extra = [] - for i in ucomm2.tolist(): + for i in ucomm2: + print(i) files_extra.append(ice_files[i]) times_extra.append(ice_times[i]) -- GitLab