-
Notifications
You must be signed in to change notification settings - Fork 1
/
OS_Output.py
418 lines (380 loc) · 13.8 KB
/
OS_Output.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
"""A set of functions to plot and/or save flight trajectory information."""
import numpy as np
import os
# This line stops matplotlib messing up in terminal mode
os.environ['QT_QPA_PLATFORM'] = 'offscreen'
from matplotlib.lines import Line2D
import matplotlib.pyplot as plt
def do_plots(fd, spld, cmap, outdir, app_ylim=True,
odpi=300, rwy=None, bpos=None):
"""Creates and saves a series of plots showing relevant data for each flight that has been processed.
Files are saved in a /YYYMMDD/ subdirectory of the 'outdir' argument.
This version saves data with time since first appearance in the
datastream on the x-axis.
Inputs:
- A dict of flight data, such as that returned by preproc_data()
- A fict of splines, such as that returned by create_spline()
- A colour map, defined as a dict of classifications -> colors
- A string specifying the output directory
- (optional) A bool specifying to apply predefined axis limits.
- (optional) An int specifying the desired output DPI
- (optional) A runway class specifying the landing runway, or None
- (optional) An int specifying the max array position
Returns:
- Nothing
"""
if bpos is None:
bpos = len(fd['time'])
colors = [cmap[l] for l in fd['labl'][0:bpos]]
fs = (20, 20)
custom_lines = []
for color in cmap:
lin = Line2D([0], [0], color=cmap[color], lw=0, marker='.')
custom_lines.append(lin)
fig, ax = plt.subplots(dpi=400)
fs = (20, 20)
plt.subplot(411)
plt.plot(fd['time'][0:bpos],
spld['altspl']/1000.,
'-',
color='k',
lw=0.1)
plt.scatter(fd['time'][0:bpos],
fd['alts'][0:bpos]/1000.,
marker='.',
c=colors,
lw=0)
plt.ylabel('altitude (kft)')
if (app_ylim):
plt.ylim(-0.5, 10.)
plt.subplot(412)
plt.plot(fd['time'][0:bpos],
spld['rocspl']/1000.,
'-',
color='k',
lw=0.1)
plt.scatter(fd['time'][0:bpos],
fd['rocs'][0:bpos]/1000.,
marker='.',
c=colors,
lw=0)
plt.ylabel('roc (kfpm)')
if (app_ylim):
plt.ylim(-1.5, 1.5)
plt.subplot(413)
plt.plot(fd['time'][0:bpos],
spld['spdspl'],
'-',
color='k',
lw=0.1)
plt.scatter(fd['time'][0:bpos],
fd['spds'][0:bpos],
marker='.',
c=colors,
lw=0)
plt.ylabel('speed (kts)')
if (app_ylim):
plt.ylim(0., 400.)
plt.subplot(414)
plt.plot(fd['time'],
spld['hdgspl'],
'-',
color='k',
lw=0.1)
plt.scatter(fd['time'],
fd['hdgs'],
marker='.',
c=colors,
lw=0)
plt.ylabel('heading (deg)')
if (app_ylim):
plt.ylim(-180., 180.)
plt.legend(custom_lines,
['Ground', 'Climb', 'Cruise', 'Descent', 'Level', 'N/A'],
bbox_to_anchor=(0., -0.33, 1., 0.102),
loc='upper left',
ncol=6,
mode="expand", borderaxespad=0.)
plt.tight_layout()
odir = outdir + fd['stop'].strftime("%Y%m%d") + '/'
if (not os.path.exists(odir)):
try:
os.mkdir(odir)
except Exception:
pass
timestr = fd['stop'].strftime("%Y%m%d%H%M")
outf = odir + 'FLT_' + fd['ic24'] + '_'
outf = outf + fd['call'] + '_'
outf = outf + timestr + '_TIME.png'
plt.savefig(outf,
figsize=fs,
dpi=odpi,
bbox_inches='tight',
pad_inches=0)
plt.close(fig)
def get_fig_outname(outdir, fd, figtype):
"""Generates a name for the output figure based on type."""
odir = outdir + fd['stop'].strftime("%Y%m%d") + '/'
if (not os.path.exists(odir)):
try:
os.mkdir(odir)
except Exception:
pass
timestr = fd['stop'].strftime("%Y%m%d%H%M")
outf = odir + 'FLT_' + fd['ic24'] + '_'
outf = outf + fd['call'] + '_'
outf = outf + timestr + '_' + figtype + '.png'
return outf
def make_yvals(dists, multis):
"""Return a list of y-values associated with a 6th order polynomial and some x values.
Inputs:
- dists: List of x axis coords
- multis: Polynomial coefficientsd
Returns:
- A list of y values
"""
yvals = (np.power(dists, 6) * multis[0] +
np.power(dists, 5) * multis[1] +
np.power(dists, 4) * multis[2] +
np.power(dists, 3) * multis[3] +
np.power(dists, 2) * multis[4] +
np.power(dists, 1) * multis[5] +
multis[6])
return yvals
def do_plots_dist(fd, spld, cmap, outdir,
app_xlim=True, app_ylim=False,
odpi=300, rwy=None, bpos=None):
"""Creates and saves a series of plots showing relevant data for each flight that has been processed.
Files are saved in a /YYYMMDD/ subdirectory of the 'outdir' argument.
This version saves data with distance to detected landing runway on the
x-axis.
Inputs:
- A dict of flight data, such as that returned by preproc_data()
- A fict of splines, such as that returned by create_spline()
- A colour map, defined as a dict of classifications -> colors
- A string specifying the output directory
- (optional) A bool specifying to apply predefined x-axis limits.
- (optional) A bool specifying to apply predefined y-axis limits.
- (optional) An int specifying the desired output DPI
- (optional) A runway class specifying the landing runway, or None
- (optional) An int specifying the max array position
Returns:
- Nothing
"""
if bpos is None:
bpos = len(fd['time'])
xlims = [-10., 0.1]
distlist = np.arange(xlims[0], xlims[1] + 0.01, 0.01)
if (rwy is not None):
hdglim = [rwy.mainhdg - 5, rwy.mainhdg + 5]
else:
hme = np.nanmean(fd['hdgs'])
hdglim = [hme - 5, hme + 5]
colors = [cmap[l] for l in fd['labl'][0:bpos]]
fs = (20, 20)
custom_lines = []
for color in cmap:
lin = Line2D([0], [0], color=cmap[color], lw=0, marker='.')
custom_lines.append(lin)
tmprd = np.copy(fd['rdis'])
pts = (tmprd < xlims[0]).nonzero()
tmprd[pts] = np.nan
pts = (tmprd > xlims[1]).nonzero()
tmprd[pts] = np.nan
pts = (tmprd == tmprd).nonzero()
plt.scatter(fd['rdis'][0:bpos],
fd['alts'][0:bpos]/1000.,
marker='.',
c=colors,
lw=0)
if (rwy is not None):
yvals1 = make_yvals(distlist, rwy.alts1)
yvalm = make_yvals(distlist, rwy.altm)
yvalp1 = make_yvals(distlist, rwy.altp1)
plt.plot(distlist, yvals1/1000., '-', color='k', lw=0.1)
plt.plot(distlist, yvalm/1000., '-', color='k', lw=0.1)
plt.plot(distlist, yvalp1/1000., '-', color='k', lw=0.1)
plt.ylabel('Altitude (kft)')
plt.xlabel('Distance to Runway (km)')
if (app_xlim):
plt.xlim(xlims[0], xlims[1])
y_min = np.nanmin(fd['alts'][0:bpos]/1000)
y_max = np.nanmax(fd['alts'][0:bpos]/1000)
plt.ylim(y_min-0.1, y_max+0.1)
if (app_ylim):
plt.ylim(0., 5.)
plt.legend(custom_lines,
['Ground', 'Climb', 'Cruise', 'Descent', 'Level', 'N/A'],
loc='best',
ncol=6,
fancybox=False,
mode="expand")
plt.tight_layout()
outf = get_fig_outname(outdir, fd, 'ALT')
plt.savefig(outf, figsize=fs, dpi=odpi, bbox_inches='tight', pad_inches=0)
plt.clf()
plt.scatter(fd['rdis'][0:bpos],
fd['rocs'][0:bpos]/1000.,
marker='.',
c=colors,
lw=0)
if (rwy is not None):
yvals1 = make_yvals(distlist, rwy.rocs1)
yvalm = make_yvals(distlist, rwy.rocm)
yvalp1 = make_yvals(distlist, rwy.rocp1)
plt.plot(distlist, yvals1/1000., '-', color='k', lw=0.1)
plt.plot(distlist, yvalm/1000., '-', color='k', lw=0.1)
plt.plot(distlist, yvalp1/1000., '-', color='k', lw=0.1)
plt.ylabel('Climb Rate (kfpm)')
plt.xlabel('Distance to Runway (km)')
if (app_xlim):
plt.xlim(xlims[0], xlims[1])
y_min = np.nanmin(fd['rocs'][0:bpos]/1000)
y_max = np.nanmax(fd['rocs'][0:bpos]/1000)
plt.ylim(y_min-0.1, y_max+0.1)
if (app_ylim):
plt.ylim(-1.5, 1.5)
plt.legend(custom_lines,
['Ground', 'Climb', 'Cruise', 'Descent', 'Level', 'N/A'],
loc='best',
ncol=6,
fancybox=False,
mode="expand")
plt.tight_layout()
outf = get_fig_outname(outdir, fd, 'ROC')
plt.savefig(outf, figsize=fs, dpi=odpi, bbox_inches='tight', pad_inches=0)
plt.clf()
plt.scatter(fd['rdis'][0:bpos],
fd['spds'][0:bpos],
marker='.',
c=colors,
lw=0)
plt.ylabel('Ground Speed (kts)')
plt.xlabel('Distance to Runway (km)')
if (app_xlim):
plt.xlim(xlims[0], xlims[1])
y_min = np.nanmin(fd['spds'][0:bpos])
y_max = np.nanmax(fd['spds'][0:bpos])
plt.ylim(y_min-10, y_max+10)
if (app_ylim):
plt.ylim(100., 250.)
plt.legend(custom_lines,
['Ground', 'Climb', 'Cruise', 'Descent', 'Level', 'N/A'],
loc='best',
ncol=6,
fancybox=False,
mode="expand")
plt.tight_layout()
outf = get_fig_outname(outdir, fd, 'SPD')
plt.savefig(outf, figsize=fs, dpi=odpi, bbox_inches='tight', pad_inches=0)
plt.clf()
plt.scatter(fd['rdis'][0:bpos],
fd['hdgs'][0:bpos],
marker='.',
c=colors,
lw=0)
if (rwy is not None):
yvals1 = make_yvals(distlist, rwy.hdgs1)
yvalm = make_yvals(distlist, rwy.hdgm)
yvalp1 = make_yvals(distlist, rwy.hdgp1)
plt.plot(distlist, yvals1, '-', color='k', lw=0.1)
plt.plot(distlist, yvalm, '-', color='k', lw=0.1)
plt.plot(distlist, yvalp1, '-', color='k', lw=0.1)
plt.ylabel('Heading (deg)')
plt.xlabel('Distance to Runway (km)')
if (app_xlim):
plt.xlim(xlims[0], xlims[1])
y_min = np.nanmin(fd['hdgs'][0:bpos])
y_max = np.nanmax(fd['hdgs'][0:bpos])
plt.ylim(y_min-10, y_max+10)
if (app_ylim):
plt.ylim(hdglim[0], hdglim[1])
plt.legend(custom_lines,
['Ground', 'Climb', 'Cruise', 'Descent', 'Level', 'N/A'],
loc='best',
ncol=6,
fancybox=False,
mode="expand")
plt.tight_layout()
outf = get_fig_outname(outdir, fd, 'HDG')
plt.savefig(outf, figsize=fs, dpi=odpi, bbox_inches='tight', pad_inches=0)
plt.clf()
plt.scatter(fd['rdis'][0:bpos],
fd['lons'][0:bpos],
marker='.',
c=colors,
lw=0)
if (rwy is not None):
yvals1 = make_yvals(distlist, rwy.lons1)
yvalm = make_yvals(distlist, rwy.lonm)
yvalp1 = make_yvals(distlist, rwy.lonp1)
plt.plot(distlist, yvals1, '-', color='k', lw=0.1)
plt.plot(distlist, yvalm, '-', color='k', lw=0.1)
plt.plot(distlist, yvalp1, '-', color='k', lw=0.1)
plt.ylabel('Longitude (deg)')
plt.xlabel('Distance to Runway (km)')
if (app_xlim):
plt.xlim(xlims[0], xlims[1])
y_min = np.nanmin(fd['lons'][0:bpos])
y_max = np.nanmax(fd['lons'][0:bpos])
adder = (y_max - y_min) * 0.2
plt.ylim(y_min - adder, y_max + adder)
plt.legend(custom_lines,
['Ground', 'Climb', 'Cruise', 'Descent', 'Level', 'N/A'],
loc='best',
ncol=6,
fancybox=False,
mode="expand")
plt.tight_layout()
outf = get_fig_outname(outdir, fd, 'LON')
plt.savefig(outf, figsize=fs, dpi=odpi, bbox_inches='tight', pad_inches=0)
plt.clf()
plt.scatter(fd['rdis'][0:bpos],
fd['lats'][0:bpos],
marker='.',
c=colors,
lw=0)
if (rwy is not None):
yvals1 = make_yvals(distlist, rwy.lats1)
yvalm = make_yvals(distlist, rwy.latm)
yvalp1 = make_yvals(distlist, rwy.latp1)
plt.plot(distlist, yvals1, '-', color='k', lw=0.1)
plt.plot(distlist, yvalm, '-', color='k', lw=0.1)
plt.plot(distlist, yvalp1, '-', color='k', lw=0.1)
plt.ylabel('Latitude (deg)')
plt.xlabel('Distance to Runway (km)')
if (app_xlim):
plt.xlim(xlims[0], xlims[1])
y_min = np.nanmin(fd['lats'][0:bpos])
y_max = np.nanmax(fd['lats'][0:bpos])
adder = (y_max - y_min) * 0.2
plt.ylim(y_min - adder, y_max + adder)
plt.legend(custom_lines,
['Ground', 'Climb', 'Cruise', 'Descent', 'Level', 'N/A'],
loc='best',
ncol=6,
fancybox=False,
mode="expand")
plt.tight_layout()
outf = get_fig_outname(outdir, fd, 'LAT')
plt.savefig(outf, figsize=fs, dpi=odpi, bbox_inches='tight', pad_inches=0)
plt.clf()
def to_numpy(fd, outdir):
"""Save data for a single flight into a numpy pickle file.
Files are saved in a YYYYMMDD subdirectory.
Inputs:
- fd: Dict containing flight info
- outdir: Location to store output
Returns:
- Nothing
"""
odir = outdir + fd['stop'].strftime("%Y%m%d") + '/'
if (not os.path.exists(odir)):
try:
os.mkdir(odir)
except Exception:
pass
outf = odir + 'FLT_' + fd['ic24'] + '_'
outf = outf + fd['call'] + '_'
outf = outf + fd['stop'].strftime("%Y%m%d%H%m") + '.pkl'
np.save(outf, fd)