-
-
Notifications
You must be signed in to change notification settings - Fork 116
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
Support zoom levels up to 15 #303
Conversation
https://github.com/onthegomap/planetiler/actions/runs/2739216109 ℹ️ Base Logs a50c438
ℹ️ This Branch Logs 3e1bf08
|
Ran some tests comparing runtime for regular z14 basemap profile to a modified basemap profile where housenumbers and small buildings get deferred until z15:
|
The major bottleneck appears to be single-threaded mbtiles writes... for comparison if you switch the schema to just have a single integer primary key for each tile instead of x/y/z then it looks like this:
Native pmtiles output (#98) would be even faster. |
Kudos, SonarCloud Quality Gate passed! |
Followup on #266 to use new tile encoding and support setting maxzoom to 15 throughout. You can try it by setting
--maxzoom=15
when running the basemap profile, but it won't do much until that profile defers rendering some features until after zoom level 14.In the future, should let profiles influence the default value for some arguments so that a profile can say that it should always use z15.
Fixes #128