Skip to content

Instantly share code, notes, and snippets.

@dxmekch
Last active March 7, 2021 19:19
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dxmekch/98d8be5d2e9d7da13efdfebf9f1377e3 to your computer and use it in GitHub Desktop.
Save dxmekch/98d8be5d2e9d7da13efdfebf9f1377e3 to your computer and use it in GitHub Desktop.
This GIST is all about flighttracking and sharing data with other sites like adsbexchange, flightradar, flighaware, planefinder etc.

Flighttracking

This GIST is all about flighttracking and sharing data with other sites as adsbexchange, flightradar, flighaware, planefinder etc.

Pre Requisites for tracking

Things you need to install, to track planes and stats:

  • READSB (will connect to your local USB RTLSDR or a network connection)
  • TAR1090 will be used as our frontend
  • GRAPHS1090 will be used as our main stats tool (be aware only on pi all information will be available such as core temp)

RTL SDR / Antennas and stuff

Aliexpress

READSB

sudo bash -c "$(wget -q -O - https://raw.githubusercontent.com/wiedehopf/adsb-scripts/master/readsb-install.sh)"

Documentation: https://github.com/wiedehopf/adsb-scripts/wiki/Automatic-installation-for-readsb

TAR1090

sudo bash -c "$(wget -nv -O - https://raw.githubusercontent.com/wiedehopf/tar1090/master/install.sh)"

Documentation: https://github.com/wiedehopf/tar1090

GRAPHS1090

sudo bash -c "$(wget -nv -O - https://raw.githubusercontent.com/wiedehopf/graphs1090/master/install.sh)"

Documentation: https://github.com/wiedehopf/graphs1090

SHARING (is caring)

  • Flightradar
  • adsbexchange.com
  • Planefinder
  • Flightaware

Flightradar

Sharing with flightradar is a must in my eyes, best mobile plattform, you will get a free business subscription in exchange for your data.

sudo bash -c "$(wget -O - https://repo-feed.flightradar24.com/install_fr24_rpi.sh)"

Documentation: https://www.flightradar24.com/share-your-data

adsbexchange.com

Another must in my eyes, in exchange you will get mlat data, and with that the chance to see the small portion of general aviation flights on your map, which else only show up in the list.

For sharing data:

wget -O /tmp/axfeed.sh https://adsbexchange.com/feed.sh
sudo bash /tmp/axfeed.sh

For stats:

wget -O /tmp/axstats.sh https://adsbexchange.com/stats.sh
sudo bash /tmp/axstats.sh

DOCKER

Yes, most of the repos are available as docker image, no idea, never used them, but on the to do list.

Documentation: https://github.com/mikenye/gitbook-adsb-guide

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment