scale  
Pixel width and height used for georeferencing the raster, as a as a point object with x and y members. See geotransform for more information.
>>> rst = GDALRaster({'width': 10, 'height': 20, 'srid': 4326})
>>> rst.scale
[1.0, -1.0]
>>> rst.scale.x = 2
>>> rst.scale
[2.0, -1.0]
 
          
Please login to continue.