Skip to content

Instantly share code, notes, and snippets.

@ralphotowo
Forked from th0ma5w/comparer.py
Created March 16, 2016 16:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ralphotowo/0145235403479eb38f62 to your computer and use it in GitHub Desktop.
Save ralphotowo/0145235403479eb38f62 to your computer and use it in GitHub Desktop.
CSV logging script for stock dump1090
#!/usr/bin/python
#
# CSV logging script for stock dump1090
#
# Uses the Requests library to compare the state of planes in view
# and prints changes to standard out
#
# Start dump1090
# modify this script to point to your dump1090 URL if different
# run the script and pipe the output to a file eg:
#
# nohup ./comparer.py >> data.csv 2> data.err < /dev/null &
#
# @th0ma5 on twitter
# http://th0ma5w.github.io
#
import requests, json, datetime, time
get_data = lambda : json.loads(requests.get('http://127.0.0.1:8095/data.json').content)
data_diff = lambda new,old : [x for x in new if x not in old]
make_date = lambda : str(datetime.datetime.now())
old_data = []
while True:
try:
new_data = get_data()
diffs = data_diff(new_data,old_data)
old_data = new_data
if len(diffs) > 0:
diff_lines = [','.join([str(y).strip() for y in [make_date()] + x.values()]) for x in diffs]
for line in diff_lines:
print line
except:
pass
time.sleep(0.5)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment