Skip to content
Snippets Groups Projects
Commit 01dee5c3 authored by tomrink's avatar tomrink
Browse files

start support for Boeing icing data...

parent cb47154e
No related branches found
No related tags found
No related merge requests found
...@@ -182,7 +182,7 @@ def pirep_icing_from_boeing(dirname='/ships19/cloud/scratch/ICING/BOEING/icing/2 ...@@ -182,7 +182,7 @@ def pirep_icing_from_boeing(dirname='/ships19/cloud/scratch/ICING/BOEING/icing/2
hours = h5f['hour'][:] hours = h5f['hour'][:]
mins = h5f['minute'][:] mins = h5f['minute'][:]
secs = h5f['second'][:] secs = h5f['second'][:]
flt_levs = h5f['altitude_ft'][:] flt_levs = (h5f['altitude_ft'][:]).astype('float32')
flt_levs *= (100 * 0.3048) flt_levs *= (100 * 0.3048)
except Exception as e: except Exception as e:
print(e) print(e)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment