Converting a map coordinate to a pixel location

When you receive a map coordinate as user input or from some other source, you must be able to convert it back to the appropriate pixel location on a raster.

Getting ready

We will use the SatImage raster available at https://github.com/GeospatialPython/Learn/raw/master/SatImage.zip

Place this raster in your /qgis_data/rasters directory.

How to do it...

Similar to the previous recipe, we will define a function, extract the GDAL GeoTransform object from our raster, and use it for the conversion.

  1. Start QGIS.
  2. From the Plugins menu, select Python Console.
  3. We need to import the gdal module:
            from osgeo import gdal 
    
  4. Then, we need to define the reusable function that does the coordinate to pixel conversion. We get ...

Get QGIS Python Programming Cookbook - Second Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.