Removed small testing profile

This commit is contained in:
Pieter Vander Vennet 2020-05-20 16:42:31 +02:00
parent 680f61c5fc
commit 50e0674077

View file

@ -1,42 +0,0 @@
{
"name": "small",
"description": "A minimal example, to start designing a profile or to debug",
"vehicletypes": [
"vehicle",
"bicycle"
],
"metadata": [
"name"
],
"defaults": {
"#defaultSpeed": 15,
"#distance": 0,
"#operatorNetworkScore": 0,
"#networkOperator":[]
},
"behaviours": {
"shortest": {
"description": "The shortest route, independent of of speed",
"#distance": 1
},
"fastest": {
"description": "The fastest route",
"#distance": 1
},
"genk": {
"description": "The Genk routeplanner",
"#distance": 0.01,
"#operatorNetworkScore": 5,
"#networkOperator": [
"Stad Genk"
]
}
},
"access": "$bicycle.legal_access",
"oneway": "$bicycle.oneway",
"speed": "#defaultSpeed",
"priority": {
"#distance": "$distance",
"#operatorNetworkScore": "$bicycle.network_by_operator"
}
}