
QGIS Python Programming Cookbook, Second Edition
By :

All raster layers have a width and height in pixels. Because remote sensing data can be considered an image as well as an array or matrix, you will often see different terms used, including columns and rows or pixels and lines. These different terms surface many times within the QGIS API.
We will use the SatImage raster again, which is available at https://github.com/GeospatialPython/Learn/raw/master/SatImage.zip.
Place this raster in your /qgis_data/rasters
directory.
Start QGIS.
From the Plugins menu, select Python Console.
In the Python console, load the layer and ensure that it is valid:
rasterLyr = QgsRasterLayer("/qgis_data/rasters/satimage.tif", "Satellite Image") rasterLyr.isValid()
Check the name of the SatImage after unzipping.
Obtain the layer's width, which should be 2592
:
rasterLyr.width()
Now, get the raster's height, which will return 2693
:
rasterLyr...