Class GDALRaster
Wrap a raster GDAL Data Source object.
Declaration
source linkDocumentation
Methods
▶ def __del__(self) overrideinherited doc Free the memory used by the C++ object.
▷ def __init__(self, ds_input, write=False) ▷ def __repr__(self) Short-hand representation because WKB may be very large.
▷ def bands(self) @property ▷ def clone(self, name=None) Return a clone of this GDALRaster.
▷ def driver(self) @cached_property Return the GDAL Driver used for this raster.
@cached_property
def driver(self)
▷ def extent(self) @property Return the extent as a 4-tuple (xmin, ymin, xmax, ymax).
@property
def extent(self)
▷ def geotransform(self) @property Return the geotransform of the data source. Return the default geotransform if it does not exist or has not been set previously. The default is [0.0, 1.0, 0.0, 0.0, 0.0, -1.0].
▷ def geotransform(self, values) @geotransform.setter Set the geotransform for the data source.
▷ def height(self) @property Height (Y axis) in pixels.
@property
def height(self)
▷ def info(self) @property Return information about this raster in a string format equivalent to the output of the gdalinfo command line utility.
@cached_property
def is_vsi_based(self)
▷ def name(self) @property Return the name of this raster. Corresponds to filename for file-based rasters.
▷ def origin(self) @property Coordinates of the raster origin.
@property
def origin(self)
▷ def scale(self) @property Pixel scale in units of the raster projection.
▷ def skew(self) @property Skew of pixels (rotation parameters).
▷ def srid(self) @property Shortcut to access the srid of this GDALRaster.
▷ def srid(self, value) @srid.setter Shortcut to set this GDALRaster's srs from an srid.
@srid.setter
def srid(
self,
value,
)
▷ def srs(self) @property Return the SpatialReference used in this GDALRaster.
▷ def srs(self, value) @srs.setter Set the spatial reference used in this GDALRaster. The input can be a SpatialReference or any parameter accepted by the SpatialReference constructor.
@srs.setter
def srs(
self,
value,
)
▷ def transform(self, srs, driver=None, name=None, resampling='NearestNeighbour', max_error=0.0) Return a copy of this raster reprojected into the given spatial reference system.
@property
def vsi_buffer(self)
▶ def warp(self, ds_input, resampling='NearestNeighbour', max_error=0.0) Return a warped GDALRaster with the given input characteristics.
The input is expected to be a dictionary containing the parameters
of the target raster. Allowed values are width, height, SRID, origin,
scale, skew, datatype, driver, and name (filename).
By default, the warp functions keeps all parameters equal to the values
of the original source raster. For the name of the target raster, the
name of the source raster will be used and appended with
_copy. + source_driver_name.
In addition, the resampling algorithm can be specified with the "resampling"
input parameter. The default is NearestNeighbor. For a list of all options
consult the GDAL_RESAMPLE_ALGORITHMS constant.
▷ def width(self) @property Width (X axis) in pixels.