All Projects → mikenye → docker-adsbexchange

mikenye / docker-adsbexchange

Licence: other
Feeds ADS-B data into adsbexchange.com. Designed to work with mikenye/readsb-protobuf.

Programming Languages

shell
77523 projects
Dockerfile
14818 projects
python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to docker-adsbexchange

gitbook-adsb-guide
Guide to aircraft tracking using ADS-B reception with SDR & docker containers. Published on GitBook.
Stars: ✭ 46 (+31.43%)
Mutual labels:  ads-b, adsb, adsbexchange, adsb-exchange
readsb
ADS-B decoder swiss knife
Stars: ✭ 114 (+225.71%)
Mutual labels:  ads-b, adsb, readsb
plane-notify
Notify If a selected plane has taken off or landed using OpenSky or ADS-B Exchange data. Compares older data to newer data to determine if a landing or takeoff has occurred. As well as nav modes, emergency squawk and resolution advisory notifications. Can output to Twitter, Discord, and Pushbullet
Stars: ✭ 1,905 (+5342.86%)
Mutual labels:  ads-b, adsb, adsbexchange
meteo-particle-model
Weather (wind and temperature) field reconstruction based on meteo-particle model using ADS-B and Mode-S data
Stars: ✭ 21 (-40%)
Mutual labels:  ads-b, adsb
docker-readsb-protobuf
Multi-architecture readsb-protobuf container with support for RTLSDR, bladeRF and plutoSDR (x86_64, arm32v7, arm64v8)
Stars: ✭ 102 (+191.43%)
Mutual labels:  adsb, readsb
docker-ads-b
Docker container for ADS-B
Stars: ✭ 27 (-22.86%)
Mutual labels:  adsb, adsbexchange
docker-flightradar24
Multi-architecture docker container running flightradar24 fr24feed. Designed to work in tandem with mikenye/readsb (arm32v7/arm64/x86_64).
Stars: ✭ 71 (+102.86%)
Mutual labels:  ads-b, adsb
docker-radarbox
AirNav RadarBox rbfeeder, multi-architecture (x86_64, arm32v7, arm64)
Stars: ✭ 26 (-25.71%)
Mutual labels:  ads-b, adsb
docker-tar1090
Multi-arch tar1090 container for visualising ADSB data
Stars: ✭ 31 (-11.43%)
Mutual labels:  adsbexchange, readsb
dump1090-docker
Run dump1090-fa (Flightaware fork) quickly and easily with Docker!
Stars: ✭ 23 (-34.29%)
Mutual labels:  adsb
adsb deku
✈️ Rust ADS-B decoder + tui radar application
Stars: ✭ 190 (+442.86%)
Mutual labels:  adsb
planesailing
Plane✈/Sailing⛵ - Completely unnecessary military situational awareness display for your home
Stars: ✭ 29 (-17.14%)
Mutual labels:  ads-b
PlotRTL1090
3D visualization of air traffic through RTL-SDR (dump1090) and MATLAB
Stars: ✭ 107 (+205.71%)
Mutual labels:  ads-b
LiveTraffic
LiveTraffic is an X-Plane multiplayer plugin, which fills your sky with live air traffic based on public flight tracking data.
Stars: ✭ 81 (+131.43%)
Mutual labels:  ads-b
dump1090
Dump1090 is a simple Mode S decoder for RTLSDR devices
Stars: ✭ 701 (+1902.86%)
Mutual labels:  ads-b
COMPASS
The OpenATS COMPASS (Compliance Assessment) tool aims at providing a generalized framework for air-traffic surveillance data analysis, visualization & evaluation.
Stars: ✭ 60 (+71.43%)
Mutual labels:  ads-b
flight2bq
RTLSDR ADS-B dump1090 to Google BigQuery
Stars: ✭ 33 (-5.71%)
Mutual labels:  ads-b

mikenye/adsbexchange

GitHub Workflow Status Docker Pulls Docker Image Size (tag) Discord

Docker container to feed ADS-B data into adsbexchange. Designed to work in tandem with mikenye/readsb-protobuf or another BEAST provider. Builds and runs on x86, x86_64, arm32v6, arm32v7 & arm64v8.

The container pulls ADS-B information from a BEAST provider and sends data to adsbexchange.

For more information on adsbexchange, see here: ADSBExchange How-To-Feed. This container uses a modified version of the "script method" outlined on that page.

Supported tags and respective Dockerfiles

  • latest is built nightly from the master branch Dockerfile for all supported architectures. It contains:
  • latest_nohealthcheck is the same as the latest version above. However, this version has the docker healthcheck removed. This is done for people running platforms (such as Nomad) that don't support manually disabling healthchecks, where healthchecks are not wanted.
  • Specific version and architecture tags are available if required, however these are not regularly updated. It is generally recommended to run latest.

Configuring mikenye/adsbexchange Container

If you're using this container with the mikenye/readsb container to provide ModeS/BEAST data, you'll need to ensure you've opened port 30005 into the mikenye/readsb container, so this container can connect to it.

The IP address or hostname of the docker host running the mikenye/readsb container should be passed to the mikenye/adsbexchange container via the BEASTHOST environment variable shown below. The port can be changed from the default of 30005 with the optional BEASTPORT environment variable if required.

The latitude and longitude of your antenna must be passed via the LAT and LONG environment variables respectively.

The altitude of your antenna must be passed via the ALT environment variable respectively. Defaults to metres, but units may specified with a 'ft' or 'm' suffix.

A UUID for this feeder must be passed via the UUID environment variable (see below).

Lastly, you should specify a site name via the SITENAME environment variable. This field supports letters, numbers, - & _ only. Any other characters will be stripped upon container initialization.

Generating a site UUID Number

First-time users should generate a static UUID.

To do this, run a temporary container with the following command:

docker run --rm -it --entrypoint uuidgen mikenye/adsbexchange -t

Take note of the UUID returned. You should pass it as the UUID environment variable when running the container.

You will be able to view your site's stats by visiting https://www.adsbexchange.com/api/feeders/?feed=YOUR-UUID-HERE. The link with your UUID will be printed to the container log when the container starts.

Up-and-Running with docker run

docker run \
 -d \
 --rm \
 --name adsbx \
 -e TZ=YOUR_TIMEZONE \
 -e BEASTHOST=beasthost \
 -e LAT=-33.33333 \
 -e LONG=111.11111 \
 -e ALT=50m \
 -e SITENAME=My_Cool_ADSB_Receiver \
 -e UUID=xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx \
 --tmpfs=/run:rw,nosuid,nodev,exec,relatime,size=64M,uid=1000,gid=1000 \
 mikenye/adsbexchange

Up-and-Running with Docker Compose

version: '2.0'

services:
  adsbexchange:
    image: mikenye/adsbexchange
    tty: true
    container_name: adsbx
    restart: always
    environment:
      - BEASTHOST=beasthost
      - TZ=Australia/Perth
      - LAT=-33.33333
      - LONG=111.11111
      - ALT=50m
      - SITENAME=My_Cool_ADSB_Receiver
      - UUID=xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
    tmpfs:
      - /run:rw,nosuid,nodev,exec,relatime,size=64M,uid=1000,gid=1000

Up-and-Running with Docker Compose, including mikenye/readsb

See Guide to ADS-B Data Reception, Decoding & Sharing with RTLSDR & Docker

Runtime Environment Variables

There are a series of available environment variables:

Environment Variable Purpose Default
BEASTHOST Required. IP/Hostname of a Mode-S/BEAST provider (dump1090)
BEASTPORT Optional. TCP port number of Mode-S/BEAST provider (dump1090) 30005
UUID Required. Your static UUID
LAT Required. The latitude of the antenna
LONG Required. The longitude of the antenna
ALT Required. The altitude of the antenna above sea level. If positive (above sea level), must include either 'm' or 'ft' suffix to indicate metres or feet. If negative (below sea level), must have no suffix, and the value is interpreted in metres.
SITENAME Required. The name of your site (A-Z, a-z, -, _)
TZ Optional. Your local timezone GMT
REDUCE_INTERVAL Optional. How often beastreduce data is transmitted to ADSBExchange. For low bandwidth feeds, this can be increased to 5 or even 10 0.5
PRIVATE_MLAT Optional. Setting this to true will prevent feeder being shown on the ADS-B Exchange Feeder Map false
MLAT_INPUT_TYPE Optional. Sets the input receiver type. Run docker run --rm -it --entrypoint mlat-client mikenye/adsbexchange --help and see --input-type for valid values. dump1090
ADSB_FEED_DESTINATION_HOSTNAME Optional. Allows changing the hostname that ADS-B data is fed to. feed.adsbexchange.com
ADSB_FEED_DESTINATION_PORT Optional. Allows changing the TCP port that ADS-B data is fed to. 30005
ADSB_FEED_DESTINATION_TYPE Optional. Allows changing the readsb output data type. beast_reduce_out
MLAT_FEED_DESTINATION_HOSTNAME Optional. Allows changing the MLAT server hostname. feed.adsbexchange.com
MLAT_FEED_DESTINATION_PORT Optional. Allows changing the MLAT server TCP port. 31090

Ports

Port Purpose
30105 MLAT data in Beast format for tools such as graphs1090 and/or tar1090

Logging

  • All processes are logged to the container's stdout, and can be viewed with docker logs [-f] container.

Getting help

Please feel free to open an issue on the project's GitHub.

I also have a Discord channel, feel free to join and converse.

Changelog

See the commit history on GitHub.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].