Skip to content
Snippets Groups Projects
Commit 7001f37b authored by tomrink's avatar tomrink
Browse files

snapshot...

parent f7d4619e
No related branches found
No related tags found
No related merge requests found
......@@ -62,6 +62,9 @@ def pireps(filename, lon_range=[-180, 180], lat_range=[-55, 55]):
# HEADER: VALID,URGENT,AIRCRAFT,REPORT,LAT,LON
ice_dict = {}
no_ice_dict = {}
with open(filename) as file:
for idx, line in enumerate(file):
toks = line.split(',')
......@@ -111,6 +114,14 @@ def pireps(filename, lon_range=[-180, 180], lat_range=[-55, 55]):
if len(re.findall(NO_ICE, ice_str)) != 0:
no_ice_reports.append(ice_str)
rpts = no_ice_dict.get(timestmp)
tup = (lat, lon, fl, ice_str)
if rpts is None:
rpts = []
rpts.append(tup)
no_ice_dict[timestmp] = rpts
else:
rpts.append(tup)
else:
ice_reports.append(ice_str)
so = re.search(ICE_LVL, ice_str)
......@@ -125,13 +136,21 @@ def pireps(filename, lon_range=[-180, 180], lat_range=[-55, 55]):
fl = max(lvl_a, lvl_b)
rpts = ice_dict.get(timestmp)
tup = (lat, lon, fl, ice_str)
if rpts is None:
rpts = []
rpts.append(tup)
ice_dict[timestmp] = rpts
else:
rpts.append(tup)
lats.append(lat)
lons.append(lon)
alts.append(fl)
times.append(timestmp)
lats = np.array(lats)
lons = np.array(lons)
return ice_dict, no_ice_dict
def get_amv_nd(filename):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment