aerialway & piste presets

This commit is contained in:
MateoV
2013-12-05 16:35:29 -05:00
parent 0c5eb13d55
commit c7ebf2d754
27 changed files with 649 additions and 0 deletions

View File

@@ -60,6 +60,25 @@ en:
postcode: Postal code
admin_level:
label: Admin Level
aerialway:
label: Type
aerialway/access:
label: Access
aerialway/bubble:
label: Bubble
aerialway/capacity:
label: Capacity (per hour)
placeholder: "500, 2500, 5000..."
aerialway/duration:
label: Duration (minutes)
placeholder: "1, 2, 3..."
aerialway/heating:
label: Heated
aerialway/occupancy:
label: Occupancy
placeholder: "2, 4, 8..."
aerialway/summer/access:
label: Access (summer)
aeroway:
label: Type
amenity:
@@ -215,6 +234,12 @@ en:
phone:
label: Phone
placeholder: +31 42 123 4567
piste/difficulty:
label: Difficulty
piste/grooming:
label: Grooming
piste/type:
label: Type
place:
label: Type
power:
@@ -300,6 +325,36 @@ en:
address:
name: Address
terms: "<translate with synonyms or related terms for 'Address', separated by commas>"
aerialway:
name: Aerialway
terms: "<translate with synonyms or related terms for 'Aerialway', separated by commas>"
aerialway/cable_car:
name: Cable Car
terms: "<translate with synonyms or related terms for 'Cable Car', separated by commas>"
aerialway/chair_lift:
name: Chair Lift
terms: "<translate with synonyms or related terms for 'Chair Lift', separated by commas>"
aerialway/gondola:
name: Gondola
terms: "<translate with synonyms or related terms for 'Gondola', separated by commas>"
aerialway/magic_carpet:
name: Magic Carpet Lift
terms: "<translate with synonyms or related terms for 'Magic Carpet Lift', separated by commas>"
aerialway/platter:
name: Platter Lift
terms: "<translate with synonyms or related terms for 'Platter Lift', separated by commas>"
aerialway/pylon:
name: Aerialway Pylon
terms: "<translate with synonyms or related terms for 'Aerialway Pylon', separated by commas>"
aerialway/rope_tow:
name: Rope Tow Lift
terms: "<translate with synonyms or related terms for 'Rope Tow Lift', separated by commas>"
aerialway/station:
name: Aerialway Station
terms: "<translate with synonyms or related terms for 'Aerialway Station', separated by commas>"
"aerialway/t-bar":
name: "T-bar Lift"
terms: "<translate with synonyms or related terms for 'T-bar Lift', separated by commas>"
aeroway:
name: Aeroway
terms: "<translate with synonyms or related terms for 'Aeroway', separated by commas>"
@@ -1047,6 +1102,9 @@ en:
office/travel_agent:
name: Travel Agency
terms: "<translate with synonyms or related terms for 'Travel Agency', separated by commas>"
piste:
name: Piste/Ski Trail
terms: "<translate with synonyms or related terms for 'Piste/Ski Trail', separated by commas>"
place:
name: Place
terms: "<translate with synonyms or related terms for 'Place', separated by commas>"

View File

@@ -84,6 +84,59 @@
"type": "number",
"label": "Admin Level"
},
"aerialway": {
"key": "aerialway",
"type": "typeCombo",
"label": "Type"
},
"aerialway/access": {
"key": "aerialway:access",
"type": "combo",
"options": [
"entry",
"exit",
"both"
],
"label": "Access"
},
"aerialway/bubble": {
"key": "aerialway:bubble",
"type": "check",
"label": "Bubble"
},
"aerialway/capacity": {
"key": "aerialway:capacity",
"type": "number",
"label": "Capacity (per hour)",
"placeholder": "500, 2500, 5000..."
},
"aerialway/duration": {
"key": "aerialway:duration",
"type": "number",
"label": "Duration (minutes)",
"placeholder": "1, 2, 3..."
},
"aerialway/heating": {
"key": "aerialway:heating",
"type": "check",
"label": "Heated"
},
"aerialway/occupancy": {
"key": "aerialway:occupancy",
"type": "number",
"label": "Occupancy",
"placeholder": "2, 4, 8..."
},
"aerialway/summer/access": {
"key": "aerialway:summer:access",
"type": "combo",
"options": [
"entry",
"exit",
"both"
],
"label": "Access (summer)"
},
"aeroway": {
"key": "aeroway",
"type": "typeCombo",
@@ -502,6 +555,21 @@
"label": "Phone",
"placeholder": "+31 42 123 4567"
},
"piste/difficulty": {
"key": "piste:difficulty",
"type": "combo",
"label": "Difficulty"
},
"piste/grooming": {
"key": "piste:grooming",
"type": "combo",
"label": "Grooming"
},
"piste/type": {
"key": "piste:type",
"type": "typeCombo",
"label": "Type"
},
"place": {
"key": "place",
"type": "typeCombo",

View File

@@ -0,0 +1,5 @@
{
"key": "aerialway",
"type": "typeCombo",
"label": "Type"
}

View File

@@ -0,0 +1,10 @@
{
"key": "aerialway:access",
"type": "combo",
"options": [
"entry",
"exit",
"both"
],
"label": "Access"
}

View File

@@ -0,0 +1,5 @@
{
"key": "aerialway:bubble",
"type": "check",
"label": "Bubble"
}

View File

@@ -0,0 +1,6 @@
{
"key": "aerialway:capacity",
"type": "number",
"label": "Capacity (per hour)",
"placeholder": "500, 2500, 5000..."
}

View File

@@ -0,0 +1,6 @@
{
"key": "aerialway:duration",
"type": "number",
"label": "Duration (minutes)",
"placeholder": "1, 2, 3..."
}

View File

@@ -0,0 +1,5 @@
{
"key": "aerialway:heating",
"type": "check",
"label": "Heated"
}

View File

@@ -0,0 +1,6 @@
{
"key": "aerialway:occupancy",
"type": "number",
"label": "Occupancy",
"placeholder": "2, 4, 8..."
}

View File

@@ -0,0 +1,10 @@
{
"key": "aerialway:summer:access",
"type": "combo",
"options": [
"entry",
"exit",
"both"
],
"label": "Access (summer)"
}

View File

@@ -0,0 +1,5 @@
{
"key": "piste:difficulty",
"type": "combo",
"label": "Difficulty"
}

View File

@@ -0,0 +1,5 @@
{
"key": "piste:grooming",
"type": "combo",
"label": "Grooming"
}

View File

@@ -0,0 +1,5 @@
{
"key": "piste:type",
"type": "typeCombo",
"label": "Type"
}

View File

@@ -13,6 +13,165 @@
"matchScore": 0.2,
"name": "Address"
},
"aerialway": {
"fields": [
"aerialway"
],
"geometry": [
"point",
"vertex",
"line"
],
"tags": {
"aerialway": "*"
},
"terms": [
"ski lift",
"funifor",
"funitel"
],
"name": "Aerialway"
},
"aerialway/cable_car": {
"geometry": [
"line"
],
"terms": [
"tramway",
"ropeway"
],
"fields": [
"aerialway/occupancy",
"aerialway/capacity",
"aerialway/duration",
"aerialway/heating"
],
"tags": {
"aerialway": "cable_car"
},
"name": "Cable Car"
},
"aerialway/chair_lift": {
"geometry": [
"line"
],
"fields": [
"aerialway/occupancy",
"aerialway/capacity",
"aerialway/duration",
"aerialway/bubble",
"aerialway/heating"
],
"tags": {
"aerialway": "chair_lift"
},
"name": "Chair Lift"
},
"aerialway/gondola": {
"geometry": [
"line"
],
"fields": [
"aerialway/occupancy",
"aerialway/capacity",
"aerialway/duration",
"aerialway/bubble",
"aerialway/heating"
],
"tags": {
"aerialway": "gondola"
},
"name": "Gondola"
},
"aerialway/magic_carpet": {
"geometry": [
"line"
],
"fields": [
"aerialway/capacity",
"aerialway/duration",
"aerialway/heating"
],
"tags": {
"aerialway": "magic_carpet"
},
"name": "Magic Carpet Lift"
},
"aerialway/platter": {
"geometry": [
"line"
],
"terms": [
"button lift",
"poma lift"
],
"fields": [
"aerialway/capacity",
"aerialway/duration"
],
"tags": {
"aerialway": "platter"
},
"name": "Platter Lift"
},
"aerialway/pylon": {
"geometry": [
"point",
"vertex"
],
"fields": [
"ref"
],
"tags": {
"aerialway": "pylon"
},
"name": "Aerialway Pylon"
},
"aerialway/rope_tow": {
"geometry": [
"line"
],
"terms": [
"handle tow",
"bugel lift"
],
"fields": [
"aerialway/capacity",
"aerialway/duration"
],
"tags": {
"aerialway": "rope_tow"
},
"name": "Rope Tow Lift"
},
"aerialway/station": {
"geometry": [
"point",
"vertex"
],
"fields": [
"aerialway/access",
"aerialway/summer/access",
"elevation"
],
"tags": {
"aerialway": "station"
},
"name": "Aerialway Station"
},
"aerialway/t-bar": {
"geometry": [
"line"
],
"fields": [
"aerialway/capacity",
"aerialway/duration"
],
"tags": {
"aerialway": "t-bar"
},
"name": "T-bar Lift"
},
"aeroway": {
"icon": "airport",
"fields": [
@@ -4007,6 +4166,34 @@
"name": "Travel Agency",
"searchable": false
},
"piste": {
"icon": "skiing",
"fields": [
"piste/type",
"piste/difficulty",
"piste/grooming",
"oneway",
"lit"
],
"geometry": [
"point",
"line",
"area"
],
"terms": [
"ski",
"sled",
"sleigh",
"snowboard",
"nordic",
"downhill",
"snowmobile"
],
"tags": {
"piste:type": "*"
},
"name": "Piste/Ski Trail"
},
"place": {
"fields": [
"place"

View File

@@ -0,0 +1,19 @@
{
"fields": [
"aerialway"
],
"geometry": [
"point",
"vertex",
"line"
],
"tags": {
"aerialway": "*"
},
"terms": [
"ski lift",
"funifor",
"funitel"
],
"name": "Aerialway"
}

View File

@@ -0,0 +1,19 @@
{
"geometry": [
"line"
],
"terms": [
"tramway",
"ropeway"
],
"fields": [
"aerialway/occupancy",
"aerialway/capacity",
"aerialway/duration",
"aerialway/heating"
],
"tags": {
"aerialway": "cable_car"
},
"name": "Cable Car"
}

View File

@@ -0,0 +1,16 @@
{
"geometry": [
"line"
],
"fields": [
"aerialway/occupancy",
"aerialway/capacity",
"aerialway/duration",
"aerialway/bubble",
"aerialway/heating"
],
"tags": {
"aerialway": "chair_lift"
},
"name": "Chair Lift"
}

View File

@@ -0,0 +1,16 @@
{
"geometry": [
"line"
],
"fields": [
"aerialway/occupancy",
"aerialway/capacity",
"aerialway/duration",
"aerialway/bubble",
"aerialway/heating"
],
"tags": {
"aerialway": "gondola"
},
"name": "Gondola"
}

View File

@@ -0,0 +1,14 @@
{
"geometry": [
"line"
],
"fields": [
"aerialway/capacity",
"aerialway/duration",
"aerialway/heating"
],
"tags": {
"aerialway": "magic_carpet"
},
"name": "Magic Carpet Lift"
}

View File

@@ -0,0 +1,17 @@
{
"geometry": [
"line"
],
"terms": [
"button lift",
"poma lift"
],
"fields": [
"aerialway/capacity",
"aerialway/duration"
],
"tags": {
"aerialway": "platter"
},
"name": "Platter Lift"
}

View File

@@ -0,0 +1,13 @@
{
"geometry": [
"point",
"vertex"
],
"fields": [
"ref"
],
"tags": {
"aerialway": "pylon"
},
"name": "Aerialway Pylon"
}

View File

@@ -0,0 +1,17 @@
{
"geometry": [
"line"
],
"terms": [
"handle tow",
"bugel lift"
],
"fields": [
"aerialway/capacity",
"aerialway/duration"
],
"tags": {
"aerialway": "rope_tow"
},
"name": "Rope Tow Lift"
}

View File

@@ -0,0 +1,15 @@
{
"geometry": [
"point",
"vertex"
],
"fields": [
"aerialway/access",
"aerialway/summer/access",
"elevation"
],
"tags": {
"aerialway": "station"
},
"name": "Aerialway Station"
}

View File

@@ -0,0 +1,13 @@
{
"geometry": [
"line"
],
"fields": [
"aerialway/capacity",
"aerialway/duration"
],
"tags": {
"aerialway": "t-bar"
},
"name": "T-bar Lift"
}

View File

@@ -0,0 +1,28 @@
{
"icon": "skiing",
"fields": [
"piste/type",
"piste/difficulty",
"piste/grooming",
"oneway",
"lit"
],
"geometry": [
"point",
"line",
"area"
],
"terms": [
"ski",
"sled",
"sleigh",
"snowboard",
"nordic",
"downhill",
"snowmobile"
],
"tags": {
"piste:type": "*"
},
"name": "Piste/Ski Trail"
}

80
dist/locales/en.json vendored
View File

@@ -475,6 +475,33 @@
"admin_level": {
"label": "Admin Level"
},
"aerialway": {
"label": "Type"
},
"aerialway/access": {
"label": "Access"
},
"aerialway/bubble": {
"label": "Bubble"
},
"aerialway/capacity": {
"label": "Capacity (per hour)",
"placeholder": "500, 2500, 5000..."
},
"aerialway/duration": {
"label": "Duration (minutes)",
"placeholder": "1, 2, 3..."
},
"aerialway/heating": {
"label": "Heated"
},
"aerialway/occupancy": {
"label": "Occupancy",
"placeholder": "2, 4, 8..."
},
"aerialway/summer/access": {
"label": "Access (summer)"
},
"aeroway": {
"label": "Type"
},
@@ -700,6 +727,15 @@
"label": "Phone",
"placeholder": "+31 42 123 4567"
},
"piste/difficulty": {
"label": "Difficulty"
},
"piste/grooming": {
"label": "Grooming"
},
"piste/type": {
"label": "Type"
},
"place": {
"label": "Type"
},
@@ -822,6 +858,46 @@
"name": "Address",
"terms": ""
},
"aerialway": {
"name": "Aerialway",
"terms": "ski lift,funifor,funitel"
},
"aerialway/cable_car": {
"name": "Cable Car",
"terms": "tramway,ropeway"
},
"aerialway/chair_lift": {
"name": "Chair Lift",
"terms": ""
},
"aerialway/gondola": {
"name": "Gondola",
"terms": ""
},
"aerialway/magic_carpet": {
"name": "Magic Carpet Lift",
"terms": ""
},
"aerialway/platter": {
"name": "Platter Lift",
"terms": "button lift,poma lift"
},
"aerialway/pylon": {
"name": "Aerialway Pylon",
"terms": ""
},
"aerialway/rope_tow": {
"name": "Rope Tow Lift",
"terms": "handle tow,bugel lift"
},
"aerialway/station": {
"name": "Aerialway Station",
"terms": ""
},
"aerialway/t-bar": {
"name": "T-bar Lift",
"terms": ""
},
"aeroway": {
"name": "Aeroway",
"terms": ""
@@ -1818,6 +1894,10 @@
"name": "Travel Agency",
"terms": ""
},
"piste": {
"name": "Piste/Ski Trail",
"terms": "ski,sled,sleigh,snowboard,nordic,downhill,snowmobile"
},
"place": {
"name": "Place",
"terms": ""

View File

@@ -58,6 +58,7 @@ iD.areaKeys = {
"tree": true
},
"office": {},
"piste:type": {},
"place": {},
"power": {
"line": true,