Skip to content

Instantly share code, notes, and snippets.

@andrewharvey
Created March 4, 2019 14:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andrewharvey/54294291ebaa676993def3cdc4cfac26 to your computer and use it in GitHub Desktop.
Save andrewharvey/54294291ebaa676993def3cdc4cfac26 to your computer and use it in GitHub Desktop.
Inspect an mbgl-offline pack and generate a GeoJSON of the containing tiles
#!/bin/sh
sqlite3 -separator ',' offline.db 'select x,y,z from tiles;' | sed 's/^/[/' | sed 's/$/]/' | mercantile shapes --indent 2 > offline.tiles.geojson
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment