origin  
Coordinates of the top left origin of the raster in the spatial reference system of the source, as a point object with x and y members.
>>> rst = GDALRaster({'width': 10, 'height': 20, 'srid': 4326})
>>> rst.origin
[0.0, 0.0]
>>> rst.origin.x = 1
>>> rst.origin
[1.0, 0.0]
 
          
Please login to continue.