Clean and fast and geospatial raster I/O for Python programmers who use Numpy
1
vote
0answers
59 views
Trouble installing Rasterio module for python 2.7 on windows
Can anyone please explain to me in step by step instructions how to install rasterio with Python 2.7 on Windows. I have Windows 8 and have tried information on Link
I have installed all the ...
0
votes
0answers
28 views
Landsat images from same path/row have different shapes
I'm starting to play with satellite imagery. In particular, I am using images of the Landsat 7 and Python. I open two TIF images of the same place but at different times to the numpy arrays and they ...
0
votes
0answers
43 views
RuntimeError opening rasterio array in GDAL
I've opened a GeoTiff with rasterio:
import rasterio
with rasterio.open('Africa.tif') as src:
transform = src.meta['transform']
array = src.read(1)
array([[203, 203, 203, ..., 0, 0, ...