-
Notifications
You must be signed in to change notification settings - Fork 163
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into tordans-patch-6
- Loading branch information
Showing
67 changed files
with
599 additions
and
139 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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 |
---|---|---|
@@ -1,5 +1,15 @@ | ||
{ | ||
"key": "map_type", | ||
"type": "typeCombo", | ||
"label": "Type" | ||
"label": "Type", | ||
"strings": { | ||
"options": { | ||
"topo": "Topographical Map", | ||
"street": "Road Map", | ||
"scheme": "Schematic Map", | ||
"toposcope": "Toposcope" | ||
} | ||
}, | ||
"autoSuggestions": false, | ||
"customValues": false | ||
} |
This file contains 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
This file contains 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,13 @@ | ||
# About `@templates` | ||
|
||
Presets in `@templates` are a convention for a _virtual_ presets that are only used from inside other presets. | ||
|
||
The only property that really matter for these special presets are the `fields`. | ||
|
||
All other properties can be copied from existing template presets and ignored. They are default values that are meant to match all cases where they might be referenced. | ||
|
||
## How to use | ||
|
||
Inside another preset, reference the template – or any other preset - like `"{@templates/internet_access}"` in `fields` or `moreFields`. This will "copy" all the listed fields from the file `data/presets/@templates/internet_access.json`. | ||
|
||
You can only "copy" (template) `fields` to (preset) `fields` and (template) `moreFields` to (preset) `moreFields`. |
This file contains 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,23 @@ | ||
{ | ||
"moreFields": [ | ||
"oneway", | ||
"access", | ||
"segregated" | ||
], | ||
"geometry": [ | ||
"line" | ||
], | ||
"tags": { | ||
"@template": "crossing/bicycle_more" | ||
}, | ||
"searchable": false, | ||
"locationSet": { | ||
"include": [ | ||
"999" | ||
], | ||
"exclude": [ | ||
"999" | ||
] | ||
}, | ||
"name": "{point}" | ||
} |
This file contains 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,23 @@ | ||
{ | ||
"fields": [ | ||
"crossing/island", | ||
"crossing_raised" | ||
], | ||
"geometry": [ | ||
"point", | ||
"line" | ||
], | ||
"tags": { | ||
"@template": "crossing/defaults" | ||
}, | ||
"searchable": false, | ||
"locationSet": { | ||
"include": [ | ||
"999" | ||
], | ||
"exclude": [ | ||
"999" | ||
] | ||
}, | ||
"name": "{point}" | ||
} |
This file contains 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,22 @@ | ||
{ | ||
"moreFields": [ | ||
"smoothness", | ||
"lit" | ||
], | ||
"geometry": [ | ||
"line" | ||
], | ||
"tags": { | ||
"@template": "crossing/geometry_way_more" | ||
}, | ||
"searchable": false, | ||
"locationSet": { | ||
"include": [ | ||
"999" | ||
], | ||
"exclude": [ | ||
"999" | ||
] | ||
}, | ||
"name": "{point}" | ||
} |
This file contains 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
This file contains 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
This file contains 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,22 @@ | ||
{ | ||
"fields": [ | ||
"surface", | ||
"smoothness" | ||
], | ||
"geometry": [ | ||
"line" | ||
], | ||
"tags": { | ||
"@template": "crossing/surfacequality" | ||
}, | ||
"searchable": false, | ||
"locationSet": { | ||
"include": [ | ||
"999" | ||
], | ||
"exclude": [ | ||
"999" | ||
] | ||
}, | ||
"name": "{point}" | ||
} |
Oops, something went wrong.