Skip to content

Commit eb44b4d

Browse files
authored
Add preset for climbing=route_bottom (#1590)
1 parent 9372320 commit eb44b4d

File tree

9 files changed

+248
-0
lines changed

9 files changed

+248
-0
lines changed

data/fields/climbing/bolts.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"key": "climbing:bolts",
3+
"type": "number",
4+
"minValue": 0,
5+
"label": "Number of Bolts",
6+
"prerequisiteTag": {
7+
"key": "climbing:sport",
8+
"value": "yes"
9+
}
10+
}
Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
{
2+
"key": "climbing:grade:french",
3+
"type": "combo",
4+
"label": "Grade (French)",
5+
"placeholder": "5c",
6+
"caseSensitive": false,
7+
"customValues": true,
8+
"autoSuggestions": false,
9+
"options": [
10+
"1",
11+
"2",
12+
"3-",
13+
"3",
14+
"3+",
15+
"4a",
16+
"4b",
17+
"4c",
18+
"5a",
19+
"5b",
20+
"5c",
21+
"5c+",
22+
"6a",
23+
"6a+",
24+
"6b",
25+
"6b+",
26+
"6c",
27+
"6c+",
28+
"7a",
29+
"7a+",
30+
"7b",
31+
"7b+",
32+
"7c",
33+
"7c+",
34+
"8a",
35+
"8a+",
36+
"8b",
37+
"8b+",
38+
"8c",
39+
"8c+",
40+
"9a",
41+
"9a+",
42+
"9b",
43+
"9b+",
44+
"9c",
45+
"9c+",
46+
"10a"
47+
]
48+
}
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
{
2+
"key": "climbing:grade:saxon",
3+
"type": "combo",
4+
"label": "Grade (Saxon)",
5+
"placeholder": "VIIa",
6+
"caseSensitive": true,
7+
"customValues": true,
8+
"autoSuggestions": false,
9+
"options": [
10+
"I",
11+
"II",
12+
"III",
13+
"IV",
14+
"V",
15+
"VI",
16+
"VIIa",
17+
"VIIb",
18+
"VII",
19+
"VIIc",
20+
"VIIIa",
21+
"VIIIb",
22+
"VIIIc",
23+
"IXa",
24+
"IXb",
25+
"IXc",
26+
"Xa",
27+
"Xb",
28+
"Xc",
29+
"XIa",
30+
"XIb",
31+
"XIc",
32+
"XIIa",
33+
"XIIb",
34+
"XIIc",
35+
"XIIIa",
36+
"XIIIb",
37+
"XIIIc"
38+
]
39+
}
Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
{
2+
"key": "climbing:grade:uiaa",
3+
"type": "combo",
4+
"label": "Grade (UIAA)",
5+
"placeholder": "6-",
6+
"caseSensitive": false,
7+
"customValues": true,
8+
"autoSuggestions": false,
9+
"options": [
10+
"1-",
11+
"1",
12+
"1+",
13+
"2-",
14+
"2",
15+
"2+",
16+
"3-",
17+
"3",
18+
"3+",
19+
"4-",
20+
"4",
21+
"4+",
22+
"5-",
23+
"5",
24+
"5+",
25+
"6-",
26+
"6",
27+
"6+",
28+
"7-",
29+
"7",
30+
"7+",
31+
"8-",
32+
"8",
33+
"8+",
34+
"9-",
35+
"9",
36+
"9+",
37+
"10-",
38+
"10",
39+
"10+",
40+
"11-",
41+
"11",
42+
"11+",
43+
"12-",
44+
"12",
45+
"12+",
46+
"13-",
47+
"13",
48+
"13+",
49+
"14-"
50+
]
51+
}
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
{
2+
"key": "climbing:grade:yds_class",
3+
"type": "combo",
4+
"label": "Grade (YDS)",
5+
"placeholder": "5.10a",
6+
"caseSensitive": false,
7+
"customValues": true,
8+
"autoSuggestions": false,
9+
"options": [
10+
"5",
11+
"5.1",
12+
"5.2",
13+
"5.3",
14+
"5.4",
15+
"5.5",
16+
"5.6",
17+
"5.7",
18+
"5.8",
19+
"5.9",
20+
"5.10a",
21+
"5.10b",
22+
"5.10c",
23+
"5.10d",
24+
"5.11a",
25+
"5.11b",
26+
"5.11c",
27+
"5.11d",
28+
"5.12a",
29+
"5.12b",
30+
"5.12c",
31+
"5.12d",
32+
"5.13a",
33+
"5.13b",
34+
"5.13c",
35+
"5.13d",
36+
"5.14a",
37+
"5.14b",
38+
"5.14c",
39+
"5.14d",
40+
"5.15a",
41+
"5.15b",
42+
"5.15c",
43+
"5.15d"
44+
]
45+
}

data/fields/climbing/length.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"key": "climbing:length",
3+
"type": "number",
4+
"minValue": 0,
5+
"label": "Length (Meters)"
6+
}

data/fields/climbing/sport.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"key": "climbing:sport",
3+
"type": "check",
4+
"label": "Sport climbing (bolted climbing)"
5+
}

data/fields/climbing/trad.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"key": "climbing:trad",
3+
"type": "check",
4+
"label": "Traditional climbing"
5+
}
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
{
2+
"icon": "temaki-abseiling",
3+
"geometry": [
4+
"point",
5+
"vertex"
6+
],
7+
"fields": [
8+
"name",
9+
"climbing/sport",
10+
"climbing/trad",
11+
"climbing/bolts"
12+
],
13+
"moreFields": [
14+
"climbing/grade/uiaa",
15+
"climbing/grade/french",
16+
"climbing/grade/saxon",
17+
"climbing/grade/yds_class",
18+
"website",
19+
"climbing/length",
20+
"description"
21+
],
22+
"terms": [
23+
"rock climbing route",
24+
"sport climbing",
25+
"route bottom",
26+
"climbing point",
27+
"route start",
28+
"climbing area",
29+
"climbing crag"
30+
],
31+
"tags": {
32+
"climbing": "route_bottom"
33+
},
34+
"addTags": {
35+
"sport": "climbing",
36+
"climbing": "route_bottom"
37+
},
38+
"name": "Climbing Route Start"
39+
}

0 commit comments

Comments
 (0)