Adds missing routable service tags

http://taginfo.openstreetmap.org/keys/service#values
This commit is contained in:
Daniel J. Hofmann 2016-10-17 16:07:51 -07:00 committed by Patrick Niklaus
parent 81c5cba0e5
commit ee4fb89336
3 changed files with 16 additions and 3 deletions

View File

@ -10,4 +10,5 @@ Feature: Car - Surfaces
| service | alley | 5 km/h +-1 | 5 km/h +-1 |
| service | emergency_access | | |
| service | driveway | 5 km/h +-1 | 5 km/h +-1 |
| service | drive-through | 5 km/h +-1 | 5 km/h +-1 |
| service | parking | 5 km/h +-1 | 5 km/h +-1 |

View File

@ -10,7 +10,7 @@ access_tag_whitelist = { ["yes"] = true, ["motorcar"] = true, ["motor_vehicle"]
access_tag_blacklist = { ["no"] = true, ["private"] = true, ["agricultural"] = true, ["forestry"] = true, ["emergency"] = true, ["psv"] = true, ["delivery"] = true }
access_tag_restricted = { ["destination"] = true, ["delivery"] = true }
access_tags_hierarchy = { "motorcar", "motor_vehicle", "vehicle", "access" }
service_tag_restricted = { ["parking_aisle"] = true }
service_tag_restricted = { ["parking_aisle"] = true, ["parking"] = true }
service_tag_forbidden = { ["emergency_access"] = true }
restrictions = { "motorcar", "motor_vehicle", "vehicle" }
@ -42,8 +42,10 @@ speed_profile = {
-- service speeds
service_speeds = {
["alley"] = 5,
["parking"] = 5,
["parking_aisle"] = 5,
["driveway"] = 5
["driveway"] = 5,
["drive-through"] = 5
}
-- surface/trackype/smoothness

View File

@ -34,6 +34,16 @@
"value": "emergency_access",
"object_types": [ "way" ]
},
{
"key": "service",
"value": "drive-through",
"object_types": [ "way" ]
},
{
"key": "service",
"value": "parking",
"object_types": [ "way" ]
},
{
"key": "oneway",
"value": "true",