https://github.com/philrw/aprs2traccar
Track APRS devices in Traccar
https://github.com/philrw/aprs2traccar
aprs aprs-is traccar
Last synced: 11 months ago
JSON representation
Track APRS devices in Traccar
- Host: GitHub
- URL: https://github.com/philrw/aprs2traccar
- Owner: PhilRW
- Created: 2019-06-28T21:16:32.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2021-06-24T17:24:09.000Z (almost 5 years ago)
- Last Synced: 2025-06-21T04:48:45.915Z (12 months ago)
- Topics: aprs, aprs-is, traccar
- Language: Python
- Size: 8.79 KB
- Stars: 4
- Watchers: 0
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# About
This little Docker container will connect to [APRS-IS](http://aprs-is.net/) over the internet and copy APRS position reports into device locations in a [Traccar](https://www.traccar.org/) server.
## How to
Clone this repo and then add this to your `docker-compose.yml` file:
```yaml
aprs2traccar:
build: https://github.com/PhilRW/aprs2traccar.git
container_name: aprs2traccar # optional
environment:
- "CALLSIGN=FO0BAR"
- "APRS_HOST=noam.aprs2.net" # optional but recommended, defaults to rotate.aprs.net
- "APRS_FILTER=b/FO0BAR*" # optional, defaults to b/CALLSIGN
- "TRACCAR_HOST=https://traccar.example.com" # optional, defaults to http://traccar:8082
- "LOG_LEVEL=DEBUG" # optional, defaults to INFO
restart: unless-stopped
```
* `CALLSIGN` is your callsign and what you use to connect to APRS-IS.
* `APRS_HOST` is the APRS-IS host to connect to.
* `APRS_FILTER` is the [filter](http://aprs-is.net/javAPRSFilter.aspx) for stations to track and send to Traccar.
* `TRACCAR_HOST` is your Traccar server's URI/URL. If run in the same docker-compose stack, name your Traccar service `traccar` and omit this env var.
> NOTE: You will want to create devices for each Callsign you intend to track in Traccar, it will not create them automatically for you.