Skip to content

Instantly share code, notes, and snippets.

@eSlider
Created September 24, 2019 13:53
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eSlider/e84ee8ddf63da061d012215bf87579dd to your computer and use it in GitHub Desktop.
Save eSlider/e84ee8ddf63da061d012215bf87579dd to your computer and use it in GitHub Desktop.
Extract PBF tiles from mbtiles (SQLite)
#!/bin/sh
git clone https://github.com/mapbox/mbutil
cd mbutil
./mb-util --image_format=pbf *.mbtiles tiles
gzip -d -r -S .pbf *
find . -type f -exec mv '{}' '{}'.pbf \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment