Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/adsblol/feed
📡🛰 Easy to use, container-based MLAT/ADS-B/ACARS/VDL2 multi feed client
https://github.com/adsblol/feed
1090 1090mhz 987 987mhz adsb adsbhub adsblol adsbone containers docker flightaware opensky opensky-network planefinder planewatch radarbox sdr-enthusiasts theairtraffic uat
Last synced: about 1 month ago
JSON representation
📡🛰 Easy to use, container-based MLAT/ADS-B/ACARS/VDL2 multi feed client
- Host: GitHub
- URL: https://github.com/adsblol/feed
- Owner: adsblol
- License: mit
- Created: 2023-02-02T16:13:10.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-08-03T17:32:48.000Z (4 months ago)
- Last Synced: 2024-08-04T02:08:51.054Z (4 months ago)
- Topics: 1090, 1090mhz, 987, 987mhz, adsb, adsbhub, adsblol, adsbone, containers, docker, flightaware, opensky, opensky-network, planefinder, planewatch, radarbox, sdr-enthusiasts, theairtraffic, uat
- Language: Shell
- Homepage:
- Size: 346 KB
- Stars: 41
- Watchers: 5
- Forks: 10
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-adsb - adsblol/feed - Easy to use, container-based MLAT/ADS-B/ACARS/VDL2 multi feed client. Powered by [SDR-Enthusiasts](https://github.com/sdr-enthusiasts) images. (Software / Feeding)
README
# adsb.lol docker feed client
The adsb.lol docker feed client is a toolkit that allows you to install, run and maintain a ADS-B / UAT / MLAT / ACARS / VDL2 feed client.
By default, it feeds MLAT+ADSB to adsb.lol. You can enable UAT/ACARS/VDL2, and feed to your plane data to FlightRadar24, Radarbox, Piaware, [and more](.env.example)
It is designed to be run on a Raspberry Pi, but can be run on any Linux Debian-like system.
With a few commands, you can easily feed to other community aggregators.
For an up to date version of the documentation, see [www.adsb.lol/docs/get-started/docker/](https://www.adsb.lol/docs/get-started/docker/)
## Bare metal installIf you are looking for a script to run on your existing station, [you can see here](https://github.com/adsblol/feed/tree/master).
Works on all images of other flight aggregator companies.
This install will only setup an ADSB+MLAT feed to adsb.lol, without impacting your existing feeds/services.
Run:
```
curl -fsL -o /tmp/adsblol.sh https://adsb.lol/feed.sh && sudo bash /tmp/adsblol.sh
```
## Manual feeding with readsb and mlat-clientYou probably do not want to do this unless you really know what you are doing.
Here goes...
1. First generate a UUID: `cat /proc/sys/kernel/random/uuid`
2. Add this to your wiedehopf readsb: `--net-connector feed.adsb.lol,30004,beast_reduce_plus_out,in.adsb.lol,1337,uuid=UUID` be sure to replace UUID with your uuid.
3. Run a separate mlat-client instance:
```/usr/bin/python3.9 /usr/bin/mlat-client --user yourname --lat 00.00000 --lon -00.00000 --alt 231m --input-type dump1090 --input-connect localhost:30005 --server feed.adsb.lol:31090 --results beast,listen,32005 --uuid=UUID --privacy```
4. You can add the mlat results to your readsb by adding this `--net-connector localhost,32005,beast_in`## Thank you SDR-Enthusiasts!
This would not be possible without [SDR-Enthusiasts](https://github.com/sdr-enthusiasts/) who have made [the original docker-compose](https://github.com/sdr-enthusiasts/docker-install) file.
This repo is largely based off of their work plus some command line interface tools to make running the stack a bit simpler.
[Their documentation can be very useful in enabling extra feeders.](https://sdr-enthusiasts.gitbook.io/ads-b/feeder-containers/feeding-flightaware-piaware).