-
Notifications
You must be signed in to change notification settings - Fork 119
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
Add fell kind to landuse #1932
base: master
Are you sure you want to change the base?
Add fell kind to landuse #1932
Conversation
@@ -373,6 +373,7 @@ post_process: | |||
scree: barren | |||
shingle: barren | |||
stone: barren | |||
fell: barren |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Makes sense to me, thanks for taking care of the remapping!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We need to set a sort_rank
for the new fell
kind, too.
Otherwise LGTM
Are there also names for these, if so we need to add |
I am not sure which number for |
Looks like a few sort_order:
collision_order:
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please also add a test, here's an example feature:
I found it using Overpass-Turbo for (in northern Europe in this case):
- way"natural"="fell";
Which should be in this tile:
- 16, 35072, 18481
With tags:
- area: yes
- name: Fulufjellet
- natural: fell
- wikidata: Q34852081
I have updated sort and collision ranks, but now Circle is complaining that there is no 265 sort rank, because I have incremented it to 266: dam,LineString;MultiLineString,266 I am not sure how to change this Circle test. |
I have added test, but I am not sure into which file I should have put it in and I am not sure whether it is correctly written. |
dam,*,224 | ||
land,*,223 | ||
wetland,*,221 | ||
mud,*,220 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
mud
, wetland
, land
and above don't need to increment their numbers, as there is a discontinuity buffer between mud
and footway
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
So, should I remove dam
, land
, wetland
and mud
? Will they sort properly when they will be removed from this list?
Add fell kind to landuse