mapbox / tippecanoe

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

Question: How to suppress generator_options metadata #897

Open denkar23 opened 3 years ago

denkar23 commented 3 years ago

Is there an option to suppress the generator_options metadata when running the Tippecanoe command? Can this be suppressed or set to null? Would also like the option for the generator metadata too if possible.

e-n-f commented 3 years ago

There is not an option to turn it off, but you can use the sqlite3 command to open the mbtiles file and do

delete from metadata where name='generator_options';

to remove it from the metadata table afterward.