forked from x72y5e/radar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtracker.py
executable file
·275 lines (239 loc) · 9.49 KB
/
tracker.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
#! /usr/bin/env python3
import json
import os
import sys
import time
import traceback
from datetime import datetime
from typing import Dict
import numpy as np
import requests
from dotenv import load_dotenv
from plane import Plane
class Tracker:
API_KEY = ''
DEBUG = False
LOG_ENABLE = False
in_test = False
def __init__(self, config: Dict, uhat):
self.config = config
self.uhat = uhat
def debug_enable(self):
self.DEBUG = True
def debug_disable(self):
self.DEBUG = False
def log_enable(self):
self.LOG_ENABLE = True
def log_disable(self):
self.LOG_ENABLE = False
def set_api_key(self, key: str):
self.API_KEY = key
# Update the UnicornhatHD Display
def plot(self, grid: np.ndarray):
if not self.uhat:
return
self.uhat.clear()
for x, y in zip(*np.where(grid[:, :, 2] > 0.)):
self.uhat.set_pixel_hsv(x, y, *grid[x, y])
self.uhat.show()
# Write plane info to log file if enabled.
def log(self, planes: Dict[str, Plane]):
if self.LOG_ENABLE:
t = datetime.strftime(datetime.now(), "%Y-%m-%d %H:%M:%S")
data = [" ".join((str(p.lat), str(p.long), str(p.colour))) for p in planes.values()]
with open("log.txt", "a") as f:
f.write(t + " - " + " - ".join(data) + "\n")
# Build grid for UnicornhatHD
def make_grid(self, planes: Dict[str, Plane],
x_low, x_high, y_low, y_high) -> np.ndarray:
grid = np.zeros((16, 16, 3), dtype=np.float32)
for plane in planes.values():
h, s = plane.colour
if plane.type == "static":
x = int(((plane.lat - x_low) / (x_high - x_low)) * -16. + 16)
y = int(((plane.long - y_low) / (y_high - y_low)) * 16.)
grid[x, y] = (h, s, .1)
b = 1.
if plane.alt is '':
plane.alt = None
alt = int(plane.alt) if plane.alt is not None else 100
for x, y in reversed(plane.track):
if (x_low < x < x_high
and y_low < y < y_high
and alt > 50):
x = int(((x - x_low) / (x_high - x_low)) * -16. + 16)
y = int(((y - y_low) / (y_high - y_low)) * 16.)
# get current brightness of pixel to avoid overwriting
current_b = grid[x, y, 2]
grid[x, y] = (h, s, max(current_b, b)) if plane.type != "static" else (h, s, 0.1)
b /= 2.
return grid
# Remove planes from tracked list after 45 seconds.
def purge(self, planes: Dict[str, Plane]) -> Dict[str, Plane]:
return {reg: plane for reg, plane in planes.items()
if (time.time() - plane.last_seen < 45.
or plane.type == "static")}
# Write found planes to console.
def display_to_console(self, current_ac: Dict[str, Plane]) -> None:
# current_ac is a dict in form {registration: Plane()}
if self.DEBUG:
for p in [p for p in current_ac.values() if p.type != "static"]:
print("ICAO:", p.icao or "N/A")
print("Operator ICAO:", p.opicao or "N/A")
print("From:", p.frm)
print("To:", p.to)
print("Type:", p.mdl) # p.Type)
print("Operator:", p.op)
print("Altitude:", p.alt)
print("Last Info:", round(time.time() - p.last_seen, 2), "seconds ago")
print()
# Main method for invoking the ADSBExchange API and parsing the data.
def track(self):
"""
:param fixed_points: list of fixed points to display. first item is tracking centre
:param r: range (km) of tracking, from centre
:param lat_min: minimum latitude to use for display grid
:param lat_max: maximum latitude to use for display grid
:param long_min: minimum longitude to use for display grid
:param long_max: maximum longitude to use for display grid
:return: None
"""
fixed_points = self.config.get("fixed", [])
x_low = self.config.get("x_low", 0.)
x_high = self.config.get("x_high", 0.)
y_low = self.config.get("y_low", 0.)
y_high = self.config.get("y_high", 0.)
r = self.config.get("r", 0.)
lat, long = x_low + (x_high - x_low) / 2, y_low + (y_high - y_low) / 2
if self.DEBUG:
print("getting data...")
print(lat, long, r)
url = "https://adsbexchange.com/api/aircraft/json/lat/{}/lon/{}/dist/{}".format(
lat, long, r)
current_ac = {}
# add fixed point(s)
for i, (x, y) in enumerate(fixed_points):
current_ac["fixed" + str(i)] = Plane("fixed" + str(i),
{"lat": x, "long": y,
"kLat": x, "kLong": y, # for k_filter
"alt": 0, "type": "static"})
while True:
try:
headers = {
"api-auth": self.API_KEY,
"Accept-Encoding": "deflate"
}
req = requests.Request('GET', url=url, headers=headers)
prepared_req = req.prepare()
if self.DEBUG:
self.pretty_print_get(prepared_req)
session = requests.Session()
response = session.send(prepared_req)
if not response.ok:
print("!response.ok: ", response)
time.sleep(5)
continue
data = json.loads(response.text)
if self.DEBUG:
print(json.dumps(data, indent=4, sort_keys=True))
if "ac" in data:
if data.get("ac") is None:
print("No data from search.")
time.sleep(2)
continue
aclist = [{k.lower(): v
for k, v in ac.items()}
for ac in data.get("ac", {})]
else:
aclist = []
except Exception as e:
print("{}: error.".format(datetime.strftime(datetime.now(), "%H:%M:%S")))
print(e)
traceback.print_exc()
if not self.in_test:
time.sleep(2)
continue
else:
break
if self.DEBUG:
print("Core Data:")
for ac in aclist:
reg = ac.get("reg")
core_data = Plane.extract_data(ac)
if self.DEBUG:
print(core_data)
if reg:
plane = current_ac.get(reg)
if plane:
plane.update_fields(core_data)
else:
plane = Plane(reg, core_data)
current_ac[reg] = plane
self.display_to_console(current_ac)
current_ac = self.purge(current_ac)
grid = self.make_grid(current_ac, x_low, x_high, y_low, y_high)
self.plot(grid)
self.log(current_ac)
if not self.in_test:
time.sleep(5)
else:
break
# Debugging method to print raw GET requests.
def pretty_print_get(self, req):
print('{}\n{}\r\n{}\r\n\r\n{}'.format(
'-----------START-----------',
req.method + ' ' + req.url,
'\r\n'.join('{}: {}'.format(k, v) for k, v in req.headers.items()),
req.body,
))
# Load config data from file.
def get_config_data() -> Dict:
# load config file - should be config.json in project root
try:
with open("config.json", "r") as f:
map_data = json.load(f)
# check data format - should be float
assert type(map_data["bottom_left"][0]) == float
assert type(map_data["bottom_left"][1]) == float
assert type(map_data["top_right"][0]) == float
assert type(map_data["top_right"][1]) == float
r = float(map_data["range"])
fixed = list(filter(lambda x: type(x[0]) == float and type(x[1]) == float, map_data["fixed_points"]))
fixed = [tuple(coord) for coord in fixed]
except FileNotFoundError:
print("Please configure location and map data in a config.json.")
sys.exit(1)
x_low, y_low = map_data["bottom_left"]
x_high, y_high = map_data["top_right"]
# check data is valid
if not (x_low < x_high and y_low < y_high):
print("invalid coordinates.")
sys.exit(1)
return {
"fixed": fixed,
"x_low": x_low,
"x_high": x_high,
"y_low": y_low,
"y_high": y_high,
"r": r
}
# Main
if __name__ == '__main__':
# Load environment variables
try:
load_dotenv()
except Exception as ex:
print("Error loading .env file: ", ex)
# Load UnicornhatHD if present
try:
import unicornhathd as uhat
except ModuleNotFoundError:
print("No unicorn hat found. Printing to console only.")
uhat = 0
tracker = Tracker(get_config_data(), uhat)
if os.getenv("DEBUG") == "1":
tracker.debug_enable()
if os.getenv("LOG_ENABLE") == "1":
tracker.log_enable()
tracker.set_api_key(os.getenv("API_KEY"))
tracker.track()