Skip to content

a simple php script that makes use of Dump1090-mutability aircraft.json and filters/writes to MySQL

Notifications You must be signed in to change notification settings

geofffox/Dump1090-MySQL-Alert-Filter

 
 

Repository files navigation

Dump1090-MySQL-Alert-Filter

a simple php script that makes use of Dump1090-mutability aircraft.json and filters/writes to MySQL

It writes Dump1090-mutability data to database and e-mail (or pushover) alerts on special events. you can set how often the script writes to database and looks for alert condition. you can specify the area (lat/lon/alt) to be observed and filter for special hex and/or flight numbers. You can globally switch to wildcard-search and then use % as wildcard for missing characters in hex- or flight-text-file - upper and lower case does not matter. in addition you can set hex/flight filter to operate only within lat/lon/alt limit or within whole range of site.

Alt text

*** 5 Minute Express Install HowTo ***

given a raspbian jessie install with dump1090-mutability and lighttpd on raspberry-pi:

sudo apt-get update

sudo apt-get install sendmail

sudo apt-get install php5-common php5-cgi php5-mysql php5-sqlite php5-curl php5

sudo lighty-enable-mod fastcgi

sudo lighty-enable-mod fastcgi-php

sudo service lighttpd force-reload

sudo apt-get install mysql-server mysql-client

sudo shutdown -r now

mysql -u root -p

CREATE DATABASE adsb;

USE adsb;

CREATE TABLE aircrafts ( id int(11) NOT NULL AUTO_INCREMENT, message_date varchar(100) COLLATE latin1_german1_ci DEFAULT NULL, now varchar(100) COLLATE latin1_german1_ci DEFAULT NULL, hex varchar(100) COLLATE latin1_german1_ci DEFAULT NULL, flight varchar(100) COLLATE latin1_german1_ci DEFAULT NULL, distance varchar(100) COLLATE latin1_german1_ci DEFAULT NULL, altitude varchar(100) COLLATE latin1_german1_ci DEFAULT NULL, lat varchar(100) COLLATE latin1_german1_ci DEFAULT NULL, lon varchar(100) COLLATE latin1_german1_ci DEFAULT NULL, track varchar(100) COLLATE latin1_german1_ci DEFAULT NULL, speed varchar(100) COLLATE latin1_german1_ci DEFAULT NULL, vert_rate varchar(100) COLLATE latin1_german1_ci DEFAULT NULL, seen_pos varchar(100) COLLATE latin1_german1_ci DEFAULT NULL, seen varchar(100) COLLATE latin1_german1_ci DEFAULT NULL, rssi varchar(100) COLLATE latin1_german1_ci DEFAULT NULL, messages varchar(100) COLLATE latin1_german1_ci DEFAULT NULL, category varchar(100) COLLATE latin1_german1_ci DEFAULT NULL, squawk varchar(100) COLLATE latin1_german1_ci DEFAULT NULL, nucp varchar(100) COLLATE latin1_german1_ci DEFAULT NULL, mlat varchar(100) COLLATE latin1_german1_ci DEFAULT NULL, tisb varchar(100) COLLATE latin1_german1_ci DEFAULT NULL, rec_msg_sec varchar(100) COLLATE latin1_german1_ci DEFAULT NULL, PRIMARY KEY (id) ) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=latin1 COLLATE=latin1_german1_ci;

SHOW COLUMNS IN aircrafts;

exit

php radar.php

run the script for some seconds/minutes until it says xxx inserted then stop script with ctrl + z

mysql -u root -p

USE adsb;

SELECT * FROM aircrafts;

exit

et voila :)

for raspbian stretch the php-install line is:

sudo apt-get install php7.0-common php7.0-cgi php7.0-mysql php7.0-sqlite php7.0-curl php7.0

the new mariadb (aka mysql) that comes with stretch is somewhat stupid with the root password. these steps help to get back the old behavior:

sudo mysql -u root -p (leave password empty)

update mysql.user set password=password('geheim') where user='root';

update mysql.user set plugin='' where user='root';

flush privileges;

About

a simple php script that makes use of Dump1090-mutability aircraft.json and filters/writes to MySQL

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 100.0%