feat(vbn): added router config

This commit is contained in:
Begerad, Stefan 2021-08-26 05:59:05 -04:00
parent 517db3efc2
commit 372e30f214
2 changed files with 18 additions and 0 deletions

16
vbn/router-config.json Normal file
View File

@ -0,0 +1,16 @@
{
"routingDefaults": {
"walkSpeed": 1.3,
"transferSlack": 120,
"maxTransfers": 4,
"waitReluctance": 0.95,
"waitAtBeginningFactor": 0.7,
"walkReluctance": 1.75,
"stairsReluctance": 1.65,
"walkBoardCost": 540,
"comment": "Ignore walkOnStreetReluctance as implementation is too simple and causes unexpected detours",
"ignored_walkOnStreetReluctance": 1.5,
"carParkCarLegWeight": 2,
"itineraryFiltering": 1.0
}
}

View File

@ -0,0 +1,2 @@
# router-config.json
The router config has been copied from [Stadtnavi tutorial](https://github.com/stadtnavi/stadtnavi-tutorial/blob/main/02-otp-and-graph-building/router-config.json).