How do I open geotiff images with gdal in python?
I am trying to run the following code: from osgeo import gdal import sys # this allows GDAL to throw Python Exceptions src_ds = gdal.Open( "fused.tif" ) src_ds.show() But I receive the following error: Traceback (most recent call last): File ".../gdalopen1.py", line 5, in module src_ds.show() AttributeError: 'Dataset' object has no attribute 'show' Why does this happen? You have already opened the dataset, as Spacedman answered. GDAL is not a visualization library (at its core). You can read the data with: data = src_ds.ReadAsArray() And then pass it on the your favourite plotting library.