mapbox / tippecanoe

Build vector tilesets from large collections of GeoJSON features.
BSD 2-Clause "Simplified" License
2.72k stars 432 forks source link

could not make tile 10/832/395 small enough #869

Open liyihongcug opened 4 years ago

liyihongcug commented 4 years ago

Centos7 tippecanoe (the most version) MY command is:tippecanoe -e innerlinepbf -pC -Z5 -z19 -f in.geojson I can't handle with one big geojson file whose size is 114M

tile 10/832/395 size is 511191 with detail 7, >500000 could not make tile 10/832/395 small enough * NOTE TILES ONLY COMPLETE THROUGH ZOOM 9

why? how to solve it.

ywgiWang commented 4 years ago

delete '-B' option

e-n-f commented 3 years ago

For one thing, -pC/--no-tile-compression is preventing your output tiles from being compressed, so they will come out much larger than the usual compressed tiles.

But the real answer is that there are probably just a lot of features or a lot of attributes in that tile. Either use --no-tile-size-limit to turn off the size limit or use, for instance --drop-densest-as-needed to drop some of the features.