Adding volcano status and volcano type

This commit is contained in:
JamesKingdom
2017-09-21 18:00:55 +01:00
parent d9b3b7b577
commit b8e4beeb33
7 changed files with 90 additions and 2 deletions

View File

@@ -1434,6 +1434,26 @@ en:
house: Up to 5m (16ft)
# visibility=street
street: 5 to 20m (16 to 65ft)
volcano/status:
# 'volcano:status=*'
label: Volcano Status
options:
# 'volcano:status=active'
active: Active
# 'volcano:status=dormant'
dormant: Dormant
# 'volcano:status=extinct'
extinct: Extinct
volcano/type:
# 'volcano:type=*'
label: Volcano Type
options:
# 'volcano:type=scoria'
scoria: Scoria
# 'volcano:type=shield'
shield: Shield
# 'volcano:type=stratovolcano'
stratovolcano: Stratovolcano
wall:
# wall=*
label: Type

View File

@@ -1952,6 +1952,30 @@
}
}
},
"volcano/status": {
"key": "volcano:status",
"type": "combo",
"label": "Volcano Status",
"strings": {
"options": {
"active": "Active",
"dormant": "Dormant",
"extinct": "Extinct"
}
}
},
"volcano/type": {
"key": "volcano:type",
"type": "combo",
"label": "Volcano Type",
"strings": {
"options": {
"stratovolcano": "Stratovolcano",
"shield": "Shield",
"scoria": "Scoria"
}
}
},
"wall": {
"key": "wall",
"type": "combo",

View File

@@ -0,0 +1,12 @@
{
"key": "volcano:status",
"type": "combo",
"label": "Volcano Status",
"strings": {
"options": {
"active": "Active",
"dormant": "Dormant",
"extinct": "Extinct"
}
}
}

View File

@@ -0,0 +1,12 @@
{
"key": "volcano:type",
"type": "combo",
"label": "Volcano Type",
"strings": {
"options": {
"stratovolcano": "Stratovolcano",
"shield": "Shield",
"scoria": "Scoria"
}
}
}

View File

@@ -10587,7 +10587,9 @@
"icon": "volcano",
"fields": [
"name",
"elevation"
"elevation",
"volcano/status",
"volcano/type"
],
"geometry": [
"point",

View File

@@ -2,7 +2,9 @@
"icon": "volcano",
"fields": [
"name",
"elevation"
"elevation",
"volcano/status",
"volcano/type"
],
"geometry": [
"point",

16
dist/locales/en.json vendored
View File

@@ -2290,6 +2290,22 @@
"area": "Over 20m (65ft)"
}
},
"volcano/status": {
"label": "Volcano Status",
"options": {
"active": "Active",
"dormant": "Dormant",
"extinct": "Extinct"
}
},
"volcano/type": {
"label": "Volcano Type",
"options": {
"stratovolcano": "Stratovolcano",
"shield": "Shield",
"scoria": "Scoria"
}
},
"wall": {
"label": "Type"
},