-
Notifications
You must be signed in to change notification settings - Fork 89
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
Limiting maxzoom to keep from generating many tiles #124
Comments
@gio0v can you share your complete command lines - it is not clear if this has to do with the pmtiles format, does it have to do with |
The "limiting maxzoom" should apply to all guessed maxzooms, not specifically to uncompressed tiles, and I added it to avoid the problem where it was too easy to make a polygon that covers the entire world and gets tiled very deeply. I should add a flag to make the z10 limit optional. |
@e-n-f would it be possible to somehow combine the |
I have been using
tippecanoe
for a while, but it is the first time I encounter this and I did not find much discussion about it.When creating vector tiles for a given world map of mine, everything works well if using PMTiles compression (and the job takes about 2 hours with
-zg
and-P
). However, when I try to generate uncompressed PBF files, the process becomes extremely slow after repeatedly showing messages likeLimiting maxzoom to -z10 to keep from generating 4577205 tiles
.Firstly, I am confused about what is going on. The
-zg
parameter is makingtippecanoe
findz8
andz12
as ideal zoom levels. So:z10
as the maximum only when generating uncompressed tiles?z10
only for the offending features/tiles, or for the whole task? Reading the source code I got the impression that it is forcingz10
only for some specific features/tiles, but understanding this is of relevance.Thanks!
The text was updated successfully, but these errors were encountered: