You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using the following command to generate MVT vector tiles using Tippecanoe, but the output PBF files are too large (4+ MB each). My goal is to display all the geo data starting from the minimum zoom level. Below are the command details:
If you can't drop features, the other things that you can do to reduce tile size are to simplify geometry (probably through lower geometric detail with -D) and to drop attributes and feature IDs that you don't need. Integer attributes take less space than floating point and strings; duplicate attributes take less space than unique attributes.
Do not use --no-clipping unless you really need the complete geometry of each feature to appear in every tile that it intersects.
I am using the following command to generate MVT vector tiles using Tippecanoe, but the output PBF files are too large (4+ MB each). My goal is to display all the geo data starting from the minimum zoom level. Below are the command details:
tippecanoe --force --no-feature-limit --no-tile-size-limit --force-feature-limit --no-clipping --drop-rate=1 --minimum-zoom=5 --maximum-zoom=16 --layer=households --output-to-directory "output_dir" json_path
Requirement:
Attempts:
--no-feature-limit
,--no-tile-size-limit
,--force-feature-limit
, and--no-clipping
to ensure all data is retained.Questions:
Thank you for your help!
The text was updated successfully, but these errors were encountered: