https://github.com/chancehudson/gpxmerge
A tool to merge gpx files
https://github.com/chancehudson/gpxmerge
Last synced: over 1 year ago
JSON representation
A tool to merge gpx files
- Host: GitHub
- URL: https://github.com/chancehudson/gpxmerge
- Owner: chancehudson
- Created: 2018-11-19T06:38:41.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-11-19T07:09:58.000Z (over 7 years ago)
- Last Synced: 2025-03-13T08:56:04.324Z (over 1 year ago)
- Language: JavaScript
- Size: 483 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# gpxmerge [](https://travis-ci.org/JChanceHud/gpxmerge) [](https://www.npmjs.com/package/gpxmerge)
A tool for merging multiple gpx files. It takes the metadata from the first file and appends trackpoints from all other supplied files.
## Install
Install from npm with the following command:
```sh
npm install -g gpxmerge
```
## Usage
The tool can be called with multiple gpx files, and will output the combined gpx to stdout.
Example use:
```sh
$ gpxmerge ./test/file1.gpx ./test/file2.gpx
Morning Ride
1
140.4
0
13
103
29
```
Written to file:
```sh
$ gpxmerge ./test/file1.gpx ./test/file2.gpx > merged.gpx
```
## Inspiration
Built to fulfill my need to document every mile I ever ride on my [beeceecle](https://www.strava.com/activities/1973133843).