Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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