Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/evgeniyarbatov/gpx-route-generator
GPX route generator
https://github.com/evgeniyarbatov/gpx-route-generator
generator gpx osrm route running
Last synced: 4 days ago
JSON representation
GPX route generator
- Host: GitHub
- URL: https://github.com/evgeniyarbatov/gpx-route-generator
- Owner: evgeniyarbatov
- Created: 2024-06-13T11:27:25.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-06-21T05:37:17.000Z (5 months ago)
- Last Synced: 2024-06-21T23:01:23.287Z (5 months ago)
- Topics: generator, gpx, osrm, route, running
- Language: Lua
- Homepage:
- Size: 1.26 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# GPX Route Generator
Create GPX files for a set of destinations defined in KML file.
## Configure
- Adjust `profiles/foot.lua` as required
- Currently optimized to select ways with 'Park Connector' in them and prefer designated foot paths.- Update `docker-compose.yaml` with the location and name of your PBF file:
```
services:
osrm:
volumes:
- ~/Documents/osm:/data
...
command: >
bash -c "
osrm-extract -p /profiles/foot.lua /data/singapore.osm.pbf &&
osrm-partition /data/singapore.osrm &&
osrm-customize /data/singapore.osrm &&
osrm-routed --algorithm mld /data/singapore.osrm
"
```## Launch
```
docker-compose up
```