Skip to content
Snippets Groups Projects
Commit 213b2689 authored by tomrink's avatar tomrink
Browse files

snapshot...

parent 6e09da62
No related branches found
No related tags found
No related merge requests found
...@@ -239,7 +239,8 @@ def pirep_icing_boeing_txt(filename, lon_range=[-180, 180], lat_range=[-63, 63]) ...@@ -239,7 +239,8 @@ def pirep_icing_boeing_txt(filename, lon_range=[-180, 180], lat_range=[-63, 63])
ts = dto.timestamp() ts = dto.timestamp()
if ice_bool == 1: if ice_bool == 1:
tup = (lat, lon, flt_alt, 1, 0, 'None', degK, spd) # tup = (lat, lon, flt_alt, 1, 0, 'None', degK, spd)
tup = (lat, lon, flt_alt, 1, 0, 'None')
rpts = ice_dict.get(ts) rpts = ice_dict.get(ts)
if rpts is None: if rpts is None:
rpts = [] rpts = []
...@@ -249,7 +250,8 @@ def pirep_icing_boeing_txt(filename, lon_range=[-180, 180], lat_range=[-63, 63]) ...@@ -249,7 +250,8 @@ def pirep_icing_boeing_txt(filename, lon_range=[-180, 180], lat_range=[-63, 63])
rpts.append(tup) rpts.append(tup)
cnt_ice += 1 cnt_ice += 1
else: else:
tup = (lat, lon, flt_alt, -1, 0, 'None', degK, spd) # tup = (lat, lon, flt_alt, -1, 0, 'None', degK, spd)
tup = (lat, lon, flt_alt, -1, 0, 'None')
rpts = no_ice_dict.get(ts) rpts = no_ice_dict.get(ts)
if rpts is None: if rpts is None:
rpts = [] rpts = []
......
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