Hello,
I’m working on a routing app for Dutch scooters. They are allowed on some specific roads called “bromfietspaden”. I can see there are some tags inside OSM that will listen to this but for some reason its not routing properly, does anybody know why? Any help would be greatly appreciated.
Here you can the route its taking:
And here you can clearly see the moped tag is enabled on this road:
This is the profile I’ve created:
{
“priority”: [
{
“if”: “road_class == MOTORWAY || road_class == TRUNK || max_speed > 60”,
“multiply_by”: 0
},
{
“if”: “road_class == CYCLEWAY && road_access == DESTINATION”,
“multiply_by”: 1
},
{
“if”: “road_class == CYCLEWAY && road_access != DESTINATION”,
“multiply_by”: 0
},
{
“if”: “road_environment == FERRY”,
“multiply_by”: 0.5
}
],
“speed”: [
{
“if”: “true”,
“limit_to”: 45
},
{
“if”: “road_class == CYCLEWAY && road_access == DESTINATION”,
“limit_to”: 30
},
{
“if”: “road_class == RESIDENTIAL || road_class == LIVING_STREET”,
“limit_to”: 30
}
]
}
Did I make a mistake anywhere?