Per ottenere un singolo valore di pixel in un punto di un raster usando rasterio, c'è un esempio qui: https://github.com/mapbox/rasterio/pull/275
Tuttavia, esiste un'API diretta all'interno di rasterio (e non il cli) che può essere utilizzata per estrarre valore in un singolo punto in un raster?
-- MODIFICARE
with rasterio.drivers():
# Read raster bands directly to Numpy arrays.
#
with rasterio.open('C:\\Users\\rit\\38ERP.tif') as src:
x = (src.bounds.left + src.bounds.right) / 2.0
y = (src.bounds.bottom + src.bounds.top) / 2.0
vals = src.sample((x, y))
for val in vals:
print list(val)
vals = src.sample((x, y))
ovals = src.sample(x, y)
? Nessuno dei due sembra funzionare