All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.graphhopper.custom_models.bike.json Maven / Gradle / Ivy

Go to download

GraphHopper is a fast and memory efficient Java road routing engine working seamlessly with OpenStreetMap data.

There is a newer version: 10.0
Show newest version
// to use this custom model you need to set the following option in the config.yml
// graph.elevation.provider: srtm   # enables elevation
// profiles:
//    - name: bike
//      custom_model_files: [bike.json, bike_elevation.json]

{
  "priority": [
    { "if": "true",  "multiply_by": "bike_priority" },
    { "if": "!bike_access && (!backward_bike_access || roundabout)",  "multiply_by": "0" },
    { "else_if": "!bike_access && backward_bike_access",  "multiply_by": "0.2" }
  ],
  "speed": [
    { "if": "true", "limit_to": "bike_average_speed" },
    { "if": "!bike_access && backward_bike_access && !roundabout", "limit_to": "5" }
  ]
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy