Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wiedehopf/readsb
ADS-B decoder swiss knife
https://github.com/wiedehopf/readsb
1090 1090mhz ads-b adsb aircraft decoder readsb rtl-sdr rtlsdr sdr
Last synced: 22 days ago
JSON representation
ADS-B decoder swiss knife
- Host: GitHub
- URL: https://github.com/wiedehopf/readsb
- Owner: wiedehopf
- License: other
- Created: 2021-01-02T10:44:43.000Z (almost 4 years ago)
- Default Branch: dev
- Last Pushed: 2024-05-21T16:42:10.000Z (7 months ago)
- Last Synced: 2024-05-22T12:07:40.473Z (7 months ago)
- Topics: 1090, 1090mhz, ads-b, adsb, aircraft, decoder, readsb, rtl-sdr, rtlsdr, sdr
- Language: C
- Homepage:
- Size: 2.99 MB
- Stars: 303
- Watchers: 22
- Forks: 68
- Open Issues: 10
-
Metadata Files:
- Readme: README-api.md
- License: COPYING
Awesome Lists containing this project
- awesome-adsb - readsb - ADS-B decoder swiss knife. (Software / General)
README
The api-port is best used with nginx and a unix socket:
```
readsb [...] --net-api-port unix:/run/readsb/api.sock
```nginx location:
```
location /re-api/ {
gzip on;
proxy_http_version 1.1;
proxy_max_temp_file_size 0;
proxy_set_header Connection $http_connection;
proxy_set_header Host $http_host;
proxy_pass http://unix:/run/readsb/api.sock:/$is_args$args;
}
```Which can then be queried like this:
```
curl --compressed -sS 'http://localhost/re-api/?box=-90,90,0,20' | jq
```See json readme for more details on the query syntax