Skip to content
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

Tile size: landuse alone #2009

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions queries.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1628,6 +1628,27 @@ post_process:
start_zoom: 4
end_zoom: 13

# drop properties on landuse areas at mid and low zooms. it blocks merging
- fn: vectordatasource.transform.drop_properties
params:
source_layer: landuse
start_zoom: 4
end_zoom: 14
properties:
- id
- kind_detail
- tier
- passenger_count
- natural
- operator
- sport
- religion
- surface
- attraction
- zoo
- barrier
- fence_type

# drop small inners before merge, as not having to consider these can speed up
# the buffer & clipping algorithms.
- fn: vectordatasource.transform.drop_small_inners
Expand Down