Docker container for processing GPX files using the processGPX by @djconnel - an advanced Perl tool for GPX file analysis and processing.
- 🎲 Generate random GPX routes at default location
- 🌍 Generate random GPX routes at specific coordinates
- 🎯 Generate random GPX routes at completely random worldwide locations
- 🔄 Process and optimize existing GPX files
- 📊 Calculate distance, speed, elevation statistics
- 🐳 Easy Docker deployment
docker run -v /path/to/output:/tmp --rm dasgreff/processgpx:latest randomdocker run -v /path/to/output:/tmp --rm dasgreff/processgpx:latest random randomdocker run -v /path/to/output:/tmp --rm dasgreff/processgpx:latest random 45.8566 6.8522# Basic processing
docker run -v /path/to/gpx/files:/tmp --rm dasgreff/processgpx:latest process
# With options
docker run -v /path/to/gpx/files:/tmp --rm dasgreff/processgpx:latest process -auto -pruneProcess routes from Biketerra using the route ID (numerics only):
# Basic BT Route processing
docker run -v /path/to/output:/tmp --rm dasgreff/processgpx:latest btroute 1234
# With options
docker run -v /path/to/output:/tmp --rm dasgreff/processgpx:latest btroute 1234 -auto -pruneProcess existing Biketerra GPX files using the route ID (numerics only):
# Basic BT GPX processing
docker run -v /path/to/output:/tmp --rm dasgreff/processgpx:latest btgpx 5678
# With options
docker run -v /path/to/output:/tmp --rm dasgreff/processgpx:latest btgpx 5678 -smooth 10-auto: Automatic mode with optimal settings-smooth <meters>: Smooth position/altitude data-smoothZ <meters>: Altitude smoothing only-fixSteps: Fix identical altitude points from Strava Route Editor-prune: Remove redundant points-quiet: Silent mode
- For
btrouteandbtgpxcommands, the Route ID must contain only digits (0-9) - Route IDs are used to fetch data from Biketerra services
# Generate random route at default location (Bonneville Salt Flats)
docker run -v $(pwd):/tmp --rm dasgreff/processgpx:latest random
# Generate random route at completely random coordinates
docker run -v $(pwd):/tmp --rm dasgreff/processgpx:latest random random
# Generate random route at specific coordinates (Chamonix, France)
docker run -v $(pwd):/tmp --rm dasgreff/processgpx:latest random 45.8566 6.8522
# Process all GPX files with optimization
docker run -v /home/user/tracks:/tmp --rm dasgreff/processgpx:latest process -auto -prune
# Process BT Route with ID 10399
docker run -v /share/Public/GPX:/tmp --rm dasgreff/processgpx:latest btroute 10399
# Process BT Route with smoothing
docker run -v /share/Public/GPX:/tmp --rm dasgreff/processgpx:latest btroute 10399 -smooth 10 -prune
# Process BT GPX with ID 5678
docker run -v /share/Public/GPX:/tmp --rm dasgreff/processgpx:latest btgpx 5678
# Process BT GPX with options
docker run -v /share/Public/GPX:/tmp --rm dasgreff/processgpx:latest btgpx 5678 -auto- No GPX files found: Check that
.gpxfiles exist in the mounted folder - Permission errors: Ensure the mounted folder has proper read/write permissions
- Generation failed: Check container logs for error details
- Invalid Route ID: Route IDs for
btrouteandbtgpxmust be numeric only (e.g.,10399, notroute_10399) - JSON module error: Rebuild the Docker image if you encounter JSON.pm errors