Reputation: 77
I have generated mbtiles for different sub regions of USA map from openMapTiles. Now, I wanted to merge all the generated mbTiles files together. What's the better way to do this?
Thanks!
Upvotes: 3
Views: 8204
Reputation: 1368
Once you have tile-join
( https://github.com/mapbox/tippecanoe ) tool, it should be easy. I am just patching version so it is easy to reuse same styles right away (for klokantech/tileserver-gl)
so my mixing script now :
rm mix.mbtiles
tile-join -o mix.mbtiles *.mbtiles
sqlite3 mix.mbtiles 'UPDATE "main"."metadata" SET value="3.8" where name ="version";`
Upvotes: 11