blob: 3ecef640aaca503019b772c6628b03014b1812c0 (
plain)
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
|
#!/usr/bin/python
"""
How many planes are in the air?
Will they get grounded when everyone panics from COVID-19?
Let's find out.
Author: SJ Pratt
Date: 29 February 2020
"""
from opensky_api import OpenSkyApi as sky
import statistics as stat
import pandas as pd
import datetime as dt
# epoch = dt.datetime.utcfromtimestamp(0)
#def unixSecs(myTime):
# return (myTime - epoch).total_seconds()
csvPath = '/home/st33v/dev/service/covid-flights/'
def isNum(item):
"""
Not used - exporting data to R
"""
try:
float(item)
return True
except:
return False
def stats(vals):
"""
Assumes vals is a list of numerics
(I ended up not using this function - export data to csv and let R handle it)
"""
rawLen = len(vals)
vals = [x for x in vals if isNum(x)]
minimum = min(vals)
maximum = max(vals)
n = len(vals)
nans = rawLen - n
mean = stat.mean(vals)
median = stat.median(vals)
return {'n':n, 'min':minimum, 'max':maximum, 'mean':mean, 'median':median, 'NaN': nans}
def makeListofDicts(StateVector):
"""
Just get the data back from the complicated object FFS
"""
data = [] # empty list. Each element will be a dict
for plane in StateVector:
data.append(plane.__dict__)
return data
planes = sky().get_states().states
planeDict = makeListofDicts(planes)
planeFrame = pd.DataFrame.from_dict(planeDict)
planeFrame['timeStamp'] = "{:%Y%m%dT%H%M}".format(dt.datetime.now())
with open(csvPath + 'covidPlanes.csv', 'a') as out:
planeFrame.to_csv(out, mode = 'a', index = False, header = out.tell()==0)
# Brief info for Journald
flying = [x for x in planes if not x.on_ground]
print('Planes: {} Flying: {}'.format(len(planes), len(flying)))
|