https://github.com/chimbori/gpx-to-csv
Reads GPX 1.1 files and writes out CSV compatible with exiftool and its geotag feature.
https://github.com/chimbori/gpx-to-csv
Last synced: about 2 months ago
JSON representation
Reads GPX 1.1 files and writes out CSV compatible with exiftool and its geotag feature.
- Host: GitHub
- URL: https://github.com/chimbori/gpx-to-csv
- Owner: chimbori
- Created: 2024-02-24T02:36:10.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-02-02T16:37:16.000Z (4 months ago)
- Last Synced: 2025-02-09T18:22:03.581Z (4 months ago)
- Language: Go
- Homepage:
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# GPX to CSV
Reads GPX 1.1 files and writes out CSV compatible with [`exiftool`](https://exiftool.org/) and its geotag feature.
Only GPX version 1.1 is supported, usually generated by a location tracker app.
## Usage
Install:
```shell
go install go.chimbori.app/gpx-to-csv@latest
```Use with [`exiftool`](https://exiftool.org/) as follows:
```shell
TRACK_FILE=gps-track.csv
gpx-to-csv *.gpx > $TRACK_FILE
exiftool -r -if 'not $gpsdatetime' -overwrite_original -geotag=$TRACK_FILE .
```