Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@hrwgc
Last active August 29, 2015 14:11
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hrwgc/8f34ce664a26ee8381a3 to your computer and use it in GitHub Desktop.
Save hrwgc/8f34ce664a26ee8381a3 to your computer and use it in GitHub Desktop.
mercantile find web mercator tiles for a given zoom level based on geojson feature collection
#!/bin/bash
function to_tiles(){
geojson=$1;
zoom=$2;
jq -c .features[] < "$geojson" | mercantile tiles $zoom | sort | uniq
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment