-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathast62_plotlist_bigfile.py
66 lines (54 loc) · 2.17 KB
/
ast62_plotlist_bigfile.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
import datetime
import time
import asterix4py
FILE = '../sample/cat062.ast'
midnight = datetime.datetime.now().replace(hour=0, minute=0, second=0, microsecond=0)
start = time.perf_counter()
with open(FILE, 'rb') as astfile:
data = astfile.read(3)
while data:
cat = data[0]
length = int.from_bytes(data[1:3], byteorder='big', signed=True)
data += astfile.read(length - 3)
# print('hex: ', ['{:02X}'.format(i) for i in memoryview(data).tolist()])
decoder = asterix4py.AsterixParser(data)
# print('decode: ', decoder.get_result())
# each plot/record of a frame has a sequence number
for nr, plot in decoder.get_result().items():
cat = plot.get('cat')
if cat != 62:
continue
print(
f"{nr:d} cat{cat:03d}"
f" tot:{midnight + datetime.timedelta(seconds=plot['070']['ToT']):%H:%M:%S.%f}"
, end='')
if plot.get('105'):
print(
f" lat:{plot['105']['Lat']:0<10.9}"
f" lon:{plot['105']['Lon']:0<10.9}"
, end='')
if plot.get('060'):
print(
f" a:{plot['060']['Mode3A']}"
, end='')
if plot.get('380'):
print(
f" s:{plot['380'].get('ADR', 0):06X}"
f" acid:{plot['380'].get('ACID', '')}"
f" fss:{plot['380'].get('FSS', 0)}"
f" gsp:{plot['380'].get('GSP', 0)}"
f" ias:{plot['380'].get('IAS', 0)}"
, end='')
if plot.get('390'):
print(
f" cs:{plot['390'].get('CS', '')}"
f" type:{plot['390'].get('TYPE', '')}"
f" wtc:{plot['390'].get('WTC', '')}"
f" adep:{plot['390'].get('DEP', '')}"
f" ades:{plot['390'].get('DES', '')}"
f" cfl:{plot['390'].get('CFL', 0)}"
, end='')
print('')
data = astfile.read(3)
end = time.perf_counter()
print(f">>> processing time: {end - start:0.4f} secs.")