From fa85c6843a0c8179244b8544df83fcefe18a5673 Mon Sep 17 00:00:00 2001 From: tomrink <rink@ssec.wisc.edu> Date: Mon, 22 Mar 2021 16:49:35 -0500 Subject: [PATCH] snapshot... --- modules/icing/pirep_goes.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/modules/icing/pirep_goes.py b/modules/icing/pirep_goes.py index 34a52c6a..de0d04b1 100644 --- a/modules/icing/pirep_goes.py +++ b/modules/icing/pirep_goes.py @@ -170,6 +170,7 @@ def run(pirep_dct, outfile=None, outfile_l1b=None, dt_str_start=None, dt_str_end time_s = [] fl_alt_s = [] ice_int_s = [] + cnt = 0 for idx, time in enumerate(time_keys): if t_start is not None: if time < t_start: @@ -237,8 +238,10 @@ def run(pirep_dct, outfile=None, outfile_l1b=None, dt_str_start=None, dt_str_end fl_alt_s.append(fl) ice_int_s.append(I) + cnt += 1 if len(time_s) == 0: return + print('num reports: ', cnt) t_start = time_s[0] t_end = time_s[len(time_s)-1] -- GitLab