mirror of
https://github.com/FoggedLens/iD.git
synced 2026-05-15 21:48:20 +02:00
Adding some traffic_calming=* presets
* I'm assuming a traffic_calming=table always has a pedestrian crossing on it; * It would be good to have a icon "bump" in the future.
This commit is contained in:
@@ -2138,6 +2138,18 @@ en:
|
||||
tourism/zoo:
|
||||
name: Zoo
|
||||
terms: "<translate with synonyms or related terms for 'Zoo', separated by commas>"
|
||||
traffic_calming/bump:
|
||||
name: Speed Bump
|
||||
terms: "<translate with synonyms or related terms for 'Speed Bump', separated by commas>"
|
||||
traffic_calming/hump:
|
||||
name: Speed Hump
|
||||
terms: "<translate with synonyms or related terms for 'Speed Hump', separated by commas>"
|
||||
traffic_calming/rumble_strip:
|
||||
name: Rumble Strip
|
||||
terms: "<translate with synonyms or related terms for 'Rumble Strip', separated by commas>"
|
||||
traffic_calming/table:
|
||||
name: Raised Pedestrian Crossing
|
||||
terms: "<translate with synonyms or related terms for 'Raised Pedestrian Crossing', separated by commas>"
|
||||
type/boundary:
|
||||
name: Boundary
|
||||
terms: "<translate with synonyms or related terms for 'Boundary', separated by commas>"
|
||||
|
||||
@@ -8974,6 +8974,67 @@
|
||||
},
|
||||
"name": "Zoo"
|
||||
},
|
||||
"traffic_calming/bump": {
|
||||
"fields": [
|
||||
"surface"
|
||||
],
|
||||
"geometry": [
|
||||
"vertex"
|
||||
],
|
||||
"tags": {
|
||||
"traffic_calming": "bump"
|
||||
},
|
||||
"terms": [
|
||||
"speed hump"
|
||||
],
|
||||
"name": "Speed Bump"
|
||||
},
|
||||
"traffic_calming/hump": {
|
||||
"fields": [
|
||||
"surface"
|
||||
],
|
||||
"geometry": [
|
||||
"vertex"
|
||||
],
|
||||
"tags": {
|
||||
"traffic_calming": "hump"
|
||||
},
|
||||
"terms": [
|
||||
"speed bump"
|
||||
],
|
||||
"name": "Speed Hump"
|
||||
},
|
||||
"traffic_calming/rumble_strip": {
|
||||
"geometry": [
|
||||
"vertex"
|
||||
],
|
||||
"tags": {
|
||||
"traffic_calming": "rumble_strip"
|
||||
},
|
||||
"terms": [
|
||||
"sleeper lines",
|
||||
"audible lines",
|
||||
"growlers"
|
||||
],
|
||||
"name": "Rumble Strip"
|
||||
},
|
||||
"traffic_calming/table": {
|
||||
"fields": [
|
||||
"surface"
|
||||
],
|
||||
"geometry": [
|
||||
"vertex"
|
||||
],
|
||||
"tags": {
|
||||
"highway": "crossing",
|
||||
"traffic_calming": "table"
|
||||
},
|
||||
"terms": [
|
||||
"speed table",
|
||||
"flat top hump"
|
||||
],
|
||||
"name": "Raised Pedestrian Crossing"
|
||||
},
|
||||
"type/boundary": {
|
||||
"geometry": [
|
||||
"relation"
|
||||
|
||||
@@ -0,0 +1,15 @@
|
||||
{
|
||||
"fields": [
|
||||
"surface"
|
||||
],
|
||||
"geometry": [
|
||||
"vertex"
|
||||
],
|
||||
"tags": {
|
||||
"traffic_calming": "bump"
|
||||
},
|
||||
"terms": [
|
||||
"speed hump"
|
||||
],
|
||||
"name": "Speed Bump"
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
{
|
||||
"fields": [
|
||||
"surface"
|
||||
],
|
||||
"geometry": [
|
||||
"vertex"
|
||||
],
|
||||
"tags": {
|
||||
"traffic_calming": "hump"
|
||||
},
|
||||
"terms": [
|
||||
"speed bump"
|
||||
],
|
||||
"name": "Speed Hump"
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
{
|
||||
"geometry": [
|
||||
"vertex"
|
||||
],
|
||||
"tags": {
|
||||
"traffic_calming": "rumble_strip"
|
||||
},
|
||||
"terms": [
|
||||
"sleeper lines",
|
||||
"audible lines",
|
||||
"growlers"
|
||||
],
|
||||
"name": "Rumble Strip"
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
{
|
||||
"fields": [
|
||||
"surface"
|
||||
],
|
||||
"geometry": [
|
||||
"vertex"
|
||||
],
|
||||
"tags": {
|
||||
"highway":"crossing",
|
||||
"traffic_calming": "table"
|
||||
},
|
||||
"terms": [
|
||||
"speed table",
|
||||
"flat top hump"
|
||||
],
|
||||
"name": "Raised Pedestrian Crossing"
|
||||
}
|
||||
@@ -2099,6 +2099,22 @@
|
||||
"key": "tourism",
|
||||
"value": "zoo"
|
||||
},
|
||||
{
|
||||
"key": "traffic_calming",
|
||||
"value": "bump"
|
||||
},
|
||||
{
|
||||
"key": "traffic_calming",
|
||||
"value": "hump"
|
||||
},
|
||||
{
|
||||
"key": "traffic_calming",
|
||||
"value": "rumble_strip"
|
||||
},
|
||||
{
|
||||
"key": "traffic_calming",
|
||||
"value": "table"
|
||||
},
|
||||
{
|
||||
"key": "type",
|
||||
"value": "boundary"
|
||||
|
||||
Vendored
+16
@@ -3286,6 +3286,22 @@
|
||||
"name": "Zoo",
|
||||
"terms": ""
|
||||
},
|
||||
"traffic_calming/bump": {
|
||||
"name": "Speed Bump",
|
||||
"terms": "speed hump"
|
||||
},
|
||||
"traffic_calming/hump": {
|
||||
"name": "Speed Hump",
|
||||
"terms": "speed bump"
|
||||
},
|
||||
"traffic_calming/rumble_strip": {
|
||||
"name": "Rumble Strip",
|
||||
"terms": "sleeper lines,audible lines,growlers"
|
||||
},
|
||||
"traffic_calming/table": {
|
||||
"name": "Raised Pedestrian Crossing",
|
||||
"terms": "speed table,flat top hump"
|
||||
},
|
||||
"type/boundary": {
|
||||
"name": "Boundary",
|
||||
"terms": ""
|
||||
|
||||
Reference in New Issue
Block a user