extent
Extent (boundary values) of the raster source, as a 4-tuple (xmin, ymin, xmax, ymax)
in the spatial reference system of the source.
>>> rst = GDALRaster({'width': 10, 'height': 20, 'srid': 4326}) >>> rst.extent (0.0, -20.0, 10.0, 0.0) >>> rst.origin.x = 100 >>> rst.extent (100.0, -20.0, 110.0, 0.0)
Please login to continue.