Skip to content

Instantly share code, notes, and snippets.

@aaronpdennis
aaronpdennis / .block
Last active April 3, 2017 01:48 — forked from mbostock/.block
Project to Bounding Box
license: gpl-3.0
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Zoom Tile size at equator (km) Resolution at equator (m)
0 22568 88155
1 11284 44078
2 7656 29904
3 4577 17881
4 2443 9544
5 1244 4861
6 625 2442
7 313 1223
import rasterio, fiona
from rasterio import features
uidfield = #whatever field contains unique values for extraction
infile = #input shapefile
inraster = #input raster
#read raster
with rasterio.open(inraster, 'r') as src:
rasArr = src.read_band(band_no)