An open API service indexing awesome lists of open source software.

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.

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 .
```