fixing typo in forestry access

This commit is contained in:
Emil Tin 2012-12-23 19:32:26 +01:00 committed by DennisOSRM
parent 9857fb7696
commit d4db5cca1c
3 changed files with 4 additions and 3 deletions

View File

@ -10,6 +10,7 @@ Feature: Barriers
| | x | | | x |
| bollard | x | | bollard | x |
| gate | x | | gate | x |
| cycle_barrier | x |
| cattle_grid | x | | cattle_grid | x |
| border_control | x | | border_control | x |
| toll_booth | x | | toll_booth | x |

View File

@ -92,7 +92,7 @@ Reference: http://wiki.openstreetmap.org/wiki/Key:access
| no | | | no | |
| private | | | private | |
| agricultural | | | agricultural | |
| forestery | | | forestry | |
| some_tag | x | | some_tag | x |
@ -105,7 +105,7 @@ Reference: http://wiki.openstreetmap.org/wiki/Key:access
| no | | | no | |
| private | | | private | |
| agricultural | | | agricultural | |
| forestery | | | forestry | |
| some_tag | x | | some_tag | x |
Scenario: Car - Access tags on both node and way Scenario: Car - Access tags on both node and way

View File

@ -1,5 +1,5 @@
-- Begin of globals -- Begin of globals
barrier_whitelist = { [""] = true, ["bollard"] = true, ["entrance"] = true, ["cattle_grid"] = true, ["border_control"] = true, ["toll_booth"] = true, ["sally_port"] = true, ["gate"] = true} barrier_whitelist = { [""] = true, ["cycle_barrier"] = true, ["bollard"] = true, ["entrance"] = true, ["cattle_grid"] = true, ["border_control"] = true, ["toll_booth"] = true, ["sally_port"] = true, ["gate"] = true}
access_tag_whitelist = { ["yes"] = true, ["permissive"] = true, ["designated"] = true } access_tag_whitelist = { ["yes"] = true, ["permissive"] = true, ["designated"] = true }
access_tag_blacklist = { ["no"] = true, ["private"] = true, ["agricultural"] = true, ["forestery"] = true } access_tag_blacklist = { ["no"] = true, ["private"] = true, ["agricultural"] = true, ["forestery"] = true }
access_tag_restricted = { ["destination"] = true, ["delivery"] = true } access_tag_restricted = { ["destination"] = true, ["delivery"] = true }