diff --git a/modules/icing/pirep_goes.py b/modules/icing/pirep_goes.py index 6e20d3b70257bffddc8dd5fe35de3b597cd643a1..dbc05b531554c7dfca9ef302c6c5dd548897de6a 100644 --- a/modules/icing/pirep_goes.py +++ b/modules/icing/pirep_goes.py @@ -63,8 +63,9 @@ def run(): last_clvr_file = None last_h5f = None - num_obs = 0 - num_files = 0 + obs_times = [] + obs_lons = [] + obs_lats = [] for idx, time in enumerate(time_keys): reports = ice_dict[time] @@ -93,12 +94,12 @@ def run(): last_h5f.close() last_h5f = h5f last_clvr_file = clvr_file - num_files += 1 else: h5f = last_h5f - cc, ll = nav.earth_to_lc_s(lon_s, lat_s) - gvals = get_grid_values(h5f, 'temp_10_4um_nom', ll[0], cc[0], 20) - num_obs += 1 + obs_times.append(time) + obs_lons.append(lon) + obs_lats.append(lat) - print(num_obs, num_files) \ No newline at end of file + cc, ll = nav.earth_to_lc_s(lon_s, lat_s) + gvals = get_grid_values(h5f, 'temp_10_4um_nom', ll[0], cc[0], 20) \ No newline at end of file