-
Notifications
You must be signed in to change notification settings - Fork 252
Add preset for climbing=route_bottom
#1590
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
143a120
Add preset for `climbing=route_bottom`
zbycz dec88c2
remove field `ele` - non-compatible type
zbycz 6995169
add `yds_class` as it is used in many examples
zbycz 8b58aa2
change grades to combo
zbycz 6c16c13
change Length (Meters)
zbycz 02edb41
add terms
zbycz d83c730
prettier
zbycz 65a7d0d
add prerequisite tag "climbing:sport=yes" for Bolts
zbycz 9d22fb9
Sport climbing (bolted climbing)
zbycz 6ac727d
move fields to `fields` property
zbycz 95f3856
Apply suggestions from code review
tordans cd73afd
Update data/fields/climbing/grade/yds_class.json
tordans File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| { | ||
| "key": "climbing:bolts", | ||
| "type": "number", | ||
| "minValue": 0, | ||
| "label": "Number of Bolts", | ||
| "prerequisiteTag": { | ||
| "key": "climbing:sport", | ||
| "value": "yes" | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,48 @@ | ||
| { | ||
| "key": "climbing:grade:french", | ||
| "type": "combo", | ||
| "label": "Grade (French)", | ||
| "placeholder": "5c", | ||
| "caseSensitive": false, | ||
| "customValues": true, | ||
| "autoSuggestions": false, | ||
| "options": [ | ||
| "1", | ||
| "2", | ||
| "3-", | ||
| "3", | ||
| "3+", | ||
| "4a", | ||
| "4b", | ||
| "4c", | ||
| "5a", | ||
| "5b", | ||
| "5c", | ||
| "5c+", | ||
| "6a", | ||
| "6a+", | ||
| "6b", | ||
| "6b+", | ||
| "6c", | ||
| "6c+", | ||
| "7a", | ||
| "7a+", | ||
| "7b", | ||
| "7b+", | ||
| "7c", | ||
| "7c+", | ||
| "8a", | ||
| "8a+", | ||
| "8b", | ||
| "8b+", | ||
| "8c", | ||
| "8c+", | ||
| "9a", | ||
| "9a+", | ||
| "9b", | ||
| "9b+", | ||
| "9c", | ||
| "9c+", | ||
| "10a" | ||
| ] | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,39 @@ | ||
| { | ||
| "key": "climbing:grade:saxon", | ||
| "type": "combo", | ||
| "label": "Grade (Saxon)", | ||
| "placeholder": "VIIa", | ||
| "caseSensitive": true, | ||
| "customValues": true, | ||
| "autoSuggestions": false, | ||
| "options": [ | ||
|
tordans marked this conversation as resolved.
|
||
| "I", | ||
| "II", | ||
| "III", | ||
| "IV", | ||
| "V", | ||
| "VI", | ||
| "VIIa", | ||
| "VIIb", | ||
| "VII", | ||
| "VIIc", | ||
| "VIIIa", | ||
| "VIIIb", | ||
| "VIIIc", | ||
| "IXa", | ||
| "IXb", | ||
| "IXc", | ||
| "Xa", | ||
| "Xb", | ||
| "Xc", | ||
| "XIa", | ||
| "XIb", | ||
| "XIc", | ||
| "XIIa", | ||
| "XIIb", | ||
| "XIIc", | ||
| "XIIIa", | ||
| "XIIIb", | ||
| "XIIIc" | ||
| ] | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,51 @@ | ||
| { | ||
| "key": "climbing:grade:uiaa", | ||
| "type": "combo", | ||
| "label": "Grade (UIAA)", | ||
| "placeholder": "6-", | ||
| "caseSensitive": false, | ||
| "customValues": true, | ||
| "autoSuggestions": false, | ||
| "options": [ | ||
|
tordans marked this conversation as resolved.
|
||
| "1-", | ||
| "1", | ||
| "1+", | ||
| "2-", | ||
| "2", | ||
| "2+", | ||
| "3-", | ||
| "3", | ||
| "3+", | ||
| "4-", | ||
| "4", | ||
| "4+", | ||
| "5-", | ||
| "5", | ||
| "5+", | ||
| "6-", | ||
| "6", | ||
| "6+", | ||
| "7-", | ||
| "7", | ||
| "7+", | ||
| "8-", | ||
| "8", | ||
| "8+", | ||
| "9-", | ||
| "9", | ||
| "9+", | ||
| "10-", | ||
| "10", | ||
| "10+", | ||
| "11-", | ||
| "11", | ||
| "11+", | ||
| "12-", | ||
| "12", | ||
| "12+", | ||
| "13-", | ||
| "13", | ||
| "13+", | ||
| "14-" | ||
| ] | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,45 @@ | ||
| { | ||
| "key": "climbing:grade:yds_class", | ||
| "type": "combo", | ||
| "label": "Grade (YDS)", | ||
| "placeholder": "5.10a", | ||
| "caseSensitive": false, | ||
| "customValues": true, | ||
| "autoSuggestions": false, | ||
| "options": [ | ||
|
tordans marked this conversation as resolved.
|
||
| "5", | ||
| "5.1", | ||
| "5.2", | ||
| "5.3", | ||
| "5.4", | ||
| "5.5", | ||
| "5.6", | ||
| "5.7", | ||
| "5.8", | ||
| "5.9", | ||
| "5.10a", | ||
| "5.10b", | ||
| "5.10c", | ||
| "5.10d", | ||
| "5.11a", | ||
| "5.11b", | ||
| "5.11c", | ||
| "5.11d", | ||
| "5.12a", | ||
| "5.12b", | ||
| "5.12c", | ||
| "5.12d", | ||
| "5.13a", | ||
| "5.13b", | ||
| "5.13c", | ||
| "5.13d", | ||
| "5.14a", | ||
| "5.14b", | ||
| "5.14c", | ||
| "5.14d", | ||
| "5.15a", | ||
| "5.15b", | ||
| "5.15c", | ||
| "5.15d" | ||
| ] | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| { | ||
| "key": "climbing:length", | ||
| "type": "number", | ||
| "minValue": 0, | ||
| "label": "Length (Meters)" | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| { | ||
| "key": "climbing:sport", | ||
| "type": "check", | ||
|
zbycz marked this conversation as resolved.
|
||
| "label": "Sport climbing (bolted climbing)" | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| { | ||
| "key": "climbing:trad", | ||
| "type": "check", | ||
|
zbycz marked this conversation as resolved.
|
||
| "label": "Traditional climbing" | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,39 @@ | ||
| { | ||
| "icon": "temaki-abseiling", | ||
| "geometry": [ | ||
| "point", | ||
| "vertex" | ||
| ], | ||
| "fields": [ | ||
| "name", | ||
| "climbing/sport", | ||
| "climbing/trad", | ||
| "climbing/bolts" | ||
| ], | ||
| "moreFields": [ | ||
| "climbing/grade/uiaa", | ||
| "climbing/grade/french", | ||
| "climbing/grade/saxon", | ||
| "climbing/grade/yds_class", | ||
| "website", | ||
| "climbing/length", | ||
| "description" | ||
| ], | ||
| "terms": [ | ||
| "rock climbing route", | ||
| "sport climbing", | ||
| "route bottom", | ||
| "climbing point", | ||
| "route start", | ||
| "climbing area", | ||
| "climbing crag" | ||
| ], | ||
| "tags": { | ||
| "climbing": "route_bottom" | ||
| }, | ||
| "addTags": { | ||
| "sport": "climbing", | ||
| "climbing": "route_bottom" | ||
| }, | ||
| "name": "Climbing Route Start" | ||
| } |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.