add climbing preset + fields

This commit is contained in:
Pavel Zbytovský 2024-01-30 12:30:20 +01:00
parent 2f24b915df
commit c6e1f01e8d
15 changed files with 193 additions and 0 deletions

View file

@ -0,0 +1,17 @@
{
"key": "climbing:bolt",
"type": "combo",
"options": [
"expansion",
"glue-in",
"ring"
],
"label": "Bolt type",
"strings": {
"options": {
"expansion": "expansion bolt",
"glue-in": "glue-in bolt",
"ring": "ring bolt"
}
}
}

View file

@ -0,0 +1,5 @@
{
"key": "climbing:bolted",
"type": "check",
"label": "Bolted"
}

View file

@ -0,0 +1,6 @@
{
"key": "climbing:bolts",
"type": "number",
"minValue": 0,
"label": "Number of bolts"
}

View file

@ -0,0 +1,6 @@
{
"key": "climbing:grade:french",
"type": "text",
"label": "Grade (french)",
"placeholder": "5c"
}

View file

@ -0,0 +1,6 @@
{
"key": "climbing:grade:saxon",
"type": "text",
"label": "Grade (saxon)",
"placeholder": "VIIa"
}

View file

@ -0,0 +1,6 @@
{
"key": "climbing:grade:uiaa",
"type": "text",
"label": "Grade (UIAA)",
"placeholder": "6-"
}

View file

@ -0,0 +1,6 @@
{
"key": "climbing:length",
"type": "number",
"minValue": 0,
"label": "Length (m)"
}

View file

@ -0,0 +1,27 @@
{
"key": "climbing:orientation",
"type": "combo",
"options": [
"N",
"NE",
"E",
"SE",
"S",
"SW",
"W",
"NW"
],
"label": "Orientation",
"strings": {
"options": {
"N": "North",
"NE": "North-East",
"E": "East",
"SE": "South-East",
"S": "South",
"SW": "South-West",
"W": "West",
"NW": "North-West"
}
}
}

View file

@ -0,0 +1,10 @@
{
"key": "climbing:quality",
"type": "combo",
"options": [
"fragile",
"medium",
"solid"
],
"label": "Rock quality"
}

View file

@ -0,0 +1,11 @@
{
"key": "climbing:rock",
"type": "combo",
"options": [
"limestone",
"sandstone",
"granite",
"basalt"
],
"label": "Rock type"
}

View file

@ -0,0 +1,6 @@
{
"key": "climbing:routes",
"type": "number",
"minValue": 0,
"label": "Number of routes"
}

View file

@ -0,0 +1,5 @@
{
"key": "climbing:summit_log",
"type": "check",
"label": "Summit log"
}

View file

@ -0,0 +1,29 @@
{
"icon": "temaki-abseiling",
"geometry": [
"point",
"relation"
],
"fields": [
"name"
],
"moreFields": [
"climbing/length",
"climbing/routes",
"climbing/bolted",
"climbing/bolt",
"climbing/orientation",
"climbing/quality",
"climbing/rock",
"website",
"ele"
],
"terms": [
"rock climbing",
"climbing"
],
"tags": {
"climbing": "crag"
},
"name": "Climbing crag"
}

View file

@ -0,0 +1,33 @@
{
"icon": "temaki-abseiling",
"geometry": [
"point",
"line"
],
"fields": [
"name",
"climbing/length",
"climbing/grade/uiaa",
"climbing/grade/french",
"climbing/grade/saxon"
],
"moreFields": [
"climbing/bolts",
"climbing/bolted",
"climbing/bolt",
"climbing/orientation",
"climbing/quality",
"climbing/rock",
"climbing/summit_log",
"website",
"ele"
],
"terms": [
"rock climbing",
"climbing"
],
"tags": {
"climbing": "route"
},
"name": "Climbing route"
}

View file

@ -0,0 +1,20 @@
{
"icon": "temaki-abseiling",
"geometry": [
"point"
],
"fields": [
"{climbing/route}"
],
"moreFields": [
"{climbing/route}"
],
"terms": [
"rock climbing",
"climbing"
],
"tags": {
"climbing": "route_bottom"
},
"name": "Climbing route (start)"
}