Skip to content
Snippets Groups Projects
Commit 9e6ea2da authored by tomrink's avatar tomrink
Browse files

snapshot...

parent 1ffe3833
No related branches found
No related tags found
No related merge requests found
...@@ -239,8 +239,7 @@ def pirep_icing_boeing_txt(filename, lon_range=[-180, 180], lat_range=[-63, 63]) ...@@ -239,8 +239,7 @@ 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 = []
...@@ -250,8 +249,7 @@ def pirep_icing_boeing_txt(filename, lon_range=[-180, 180], lat_range=[-63, 63]) ...@@ -250,8 +249,7 @@ 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