https://github.com/chakflying/rpi-gps-recorder
A simple GPS recorder running on Raspberry Pi 4 32-bit with the Adafruit Ultimate GPS.
https://github.com/chakflying/rpi-gps-recorder
gps raspberry-pi rust
Last synced: about 2 months ago
JSON representation
A simple GPS recorder running on Raspberry Pi 4 32-bit with the Adafruit Ultimate GPS.
- Host: GitHub
- URL: https://github.com/chakflying/rpi-gps-recorder
- Owner: chakflying
- Created: 2021-03-14T12:32:24.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-05-06T21:59:03.000Z (about 3 years ago)
- Last Synced: 2025-01-24T07:09:07.389Z (over 1 year ago)
- Topics: gps, raspberry-pi, rust
- Language: Rust
- Homepage:
- Size: 35.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# rpi-gps-recorder
This is a simple command-line program that takes gps data from the Adafruit Ultimate GPS and writes to a .gpx file.
It assumes the MTK3339 is conected to pi's `/dev/serial0`.
Update rate is set to 2Hz, and can be configured in code.
Tested on:
- Raspberry Pi 4 2GB, running on 32-bit OS
- Adafruit Ultimate GPS Pi HAT
- rustc 1.69.0 compiling to `armv7-unknown-linux-gnueabihf`
## Libraries used:
- [adafruit_gps](https://github.com/MechanicalPython/adafruit_gps)
- [gpx](https://github.com/georust/gpx)
- [geo-types](https://github.com/georust/geo)