-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathdecoders.py
141 lines (127 loc) · 4.72 KB
/
decoders.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
#!/usr/bin/env python
# vim: tabstop=4:softtabstop=4:shiftwidth=4:expandtab:
import re
import arrow
from expn import *
def fix_coord(x, scale=1e-4):
hemi = x[0]
degrees = int(x[1:]) * scale
if hemi in ['S', 'W']:
degrees *= -1.0
return degrees
# decoders take a message (dict) as input, and modify it
# Returns True on success or False otherwise
def decode_default(message):
print "[{}-{}] {}\n{}\n".format(message['label'],
arinc620.get(message[label], 'unknown'),
message['date'],
message['text'])
def decode_SA(x):
'''Media Advisory'''
mtype = {'V': 'VHF-ACARS',
'S': 'Default Satcom',
'H': 'HF',
'G': 'Global Star Satcom',
'C': 'ICO Satcom',
'2': 'VDL Mod 2',
'X': 'Inmarsat Aero H/H+/I/L',
'I': 'Iridium Satcom',
}
m = re.search(r'(?P<version>\d)(?P<est_los>.)(?P<media_type>.)(?P<utctime>\d{6})(?P<cur_media>.)((?P<text>.*))?', x['text'], flags=re.I|re.S|re.M)
if m:
x.update( m.groupdict() )
x['media_type'] = mtype[ x['media_type'] ]
x['cur_media'] = mtype[ x['cur_media'] ]
return True
else:
return False
def decode_colonsemi(x):
try:
new_freq = int(x['text'].strip())/1000.0
x['new_freq'] = new_freq
return True
except ValueError:
return False
def decode_SQ(x):
m = re.search(r'(?P<something>.)(?P<ver>\d)(?P<lat>\d{4})(?P<lat_hemi>[NS])(?P<lon>\d{5})(?P<lon_hemi>[EW])(?P<acars_mode>.)(?P<vdl2freq>\d+)(?P<text>.+)?', x['text'])
if m is None:
return False
d = m.groupdict()
d['lon'] = int(d['lon'])/100.0
d['lat'] = int(d['lat'])/100.0
if d.pop('lon_hemi', 'E') == 'W':
d['lon'] *= -1.0
if d.pop('lat_hemi', 'N') == 'S':
d['lat'] *= -1.0
d['vdl2freq'] = int(d['vdl2freq'])/1000.0
x.update(d)
return True
def decode_5Z(x):
d = {'united_type': 'not decoded'}
mtype = x['text'].split()[0]
d['united_type'] = united_5z.get(mtype, 'not decoded')
d['mtype'] = mtype
if mtype == '/B6':
m = re.search('K?(?P<dest>[A-Z]{3,4}) R(?P<runway>\d+[RCL]?)', x['text'])
if m:
d.update(m.groupdict())
x.update(d)
return True
def decode_15(x):
'''General Aviation Position Report'''
rgx = r'[(]2(?P<lat>[NS]\d{5})(?P<lon>[EW]\d{6})(OFF(?P<d>\d{2})(?P<m>\d{2})(?P<y>\d{2})(?P<H>\d{2})(?P<M>\d{2}))?(?P<unknown>.*)[(]Z'
m = re.search(rgx, x['text'])
if m:
d = m.groupdict()
d['lat'] = fix_coord(d['lat'], 1e-3)
d['lon'] = fix_coord(d['lon'], 1e-3)
try:
offtm = "20{}-{}-{} {}:{}:00".format(d.pop('y', None), d.pop('m', None), d.pop('d', None), d.pop('H', None), d.pop('M', None))
d['offtm'] = arrow.get(offtm).datetime
except arrow.parser.ParserError:
pass
x.update(d)
return True
else:
return False
def decode_16(x):
'''Decoder for either "Fedex Position Report-AUTPOS" or "General Aviation Weather Request"'''
d = {}
m = re.search(r'(?P<something>\d+)/AUTPOS/LLD (?P<lat>[NS]\d+) (?P<lon>[WE]\d+)\s+/ALT (?P<altitude>\d+)/SAT (?P<sat>\S+)\s+/WND (?P<wind_dir>\d{3})(?P<wind_spd>\d{3})/TAT (?P<tat>\S+)/TAS (?P<tas>\d+)/CRZ (?P<crz>\d+)\s+/FOB (?P<fuel>\d+)\r\n/DAT (?P<mdate>\d+)/TIM (?P<mtime>\d+)', x)
if m:
d.update(m.groupdict())
d['datetime'] = arrow.get("{mdate} {mtime}".format(**d), "YYMMDD HHmmss").datetime
d['lat'] = fix_coord(d['lat'])
d['lon'] = fix_coord(d['lon'])
d['fuel'] = int(d['fuel'])
d['sat'] = int(d['sat'])
d['tas'] = int(d['tas'])
d['crz'] = int(d['crz'])
d['wind_spd'] = int(d['wind_spd'])
d['wind_dir'] = int(d['wind_dir'])
d.pop('mdate', '')
d.pop('mtime', '')
return d
m = re.search(r'(?P<x>[NS])\s*(?P<lat>[0-9.]+)[/,](?P<y>[EW])\s*(?P<lon>[0-9.]+)(,(?P<altitude>\d+))?', x)
if m:
d.update(m.groupdict())
x = 1.0 if d['x'] == 'N' else -1.0
y = 1.0 if d['y'] == 'E' else -1.0
d['lat'] = x * float(d['lat'])
d['lon'] = y * float(d['lon'])
if d['altitude'] is None:
d.pop('altitude', '')
d.pop('x', '')
d.pop('y', '')
return d
m = re.search(r'(?P<lat>[NS]\d+)(?P<lon>[EW]\d+)(?P<dep>[A-Z]{4})?(?P<arr>[A-Z]{4})?', x)
if m:
d.update(m.groupdict())
d['lat'] = fix_coord(d['lat'], 1e-3)
d['lon'] = fix_coord(d['lon'], 1e-3)
if d['arr'] is None:
d.pop('arr', '')
if d['dep'] is None:
d.pop('dep', '')
return d
return d