Rasterio kullanarak bir rasterdeki bir noktada tek bir piksel değeri elde etmek için burada bir örnek var: https://github.com/mapbox/rasterio/pull/275
Bununla birlikte, bir rasterdeki tek bir noktada değer elde etmek için kullanılabilecek rasterio içinde (cli değil) doğrudan bir API var mı?
-- DÜZENLE
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))
veyavals = src.sample(x, y)
? İkisi de işe yaramıyor