GDAL API

    GeoDjango provides a high-level Python interface for some of the capabilities of OGR, including the reading and coordinate transformation of vector spatial data and minimal support for GDAL’s features with respect to raster (image) data.

    注解

    Although the module is named gdal, GeoDjango only supports some of the capabilities of OGR and GDAL’s raster features at this time.

    The GDAL/OGR tools described here are designed to help you read in your geospatial data, in order for most of them to be useful you have to have some data to work with. If you’re starting out and don’t yet have any data of your own to use, GeoDjango tests contain a number of data sets that you can use for testing. You can download them here:

    Vector Data Source Objects

    DataSource

    is a wrapper for the OGR data source object that supports reading data from a variety of OGR-supported geospatial file formats and data sources using a consistent interface. Each data source is represented by a DataSource object which contains one or more layers of data. Each layer, represented by a object, contains some number of geographic features (Feature), information about the type of features contained in that layer (e.g. points, polygons, etc.), as well as the names and types of any additional fields () of data that may be associated with each feature in that layer.

    class DataSource(ds_input, encoding=’utf-8’)

    The constructor for DataSource only requires one parameter: the path of the file you want to read. However, OGR also supports a variety of more complex data sources, including databases, that may be accessed by passing a special name string instead of a path. For more information, see the OGR Vector Formats documentation. The property of a DataSource instance gives the OGR name of the underlying data source that it is using.

    The optional encoding parameter allows you to specify a non-standard encoding of the strings in the source. This is typically useful when you obtain DjangoUnicodeDecodeError exceptions while reading field values.

    Once you’ve created your DataSource, you can find out how many layers of data it contains by accessing the layer_count property, or (equivalently) by using the len() function. For information on accessing the layers of data themselves, see the next section:

    1. >>> from django.contrib.gis.gdal import DataSource
    2. >>> ds = DataSource('/path/to/your/cities.shp')
    3. >>> ds.name
    4. '/path/to/your/cities.shp'
    5. >>> ds.layer_count # This file only contains one layer
    6. 1
    • layer_count

    Returns the number of layers in the data source.

    • name

    Returns the name of the data source.

    Changed in Django Development version:

    Support for ds_input was added.

    Layer

    class Layer

    Layer is a wrapper for a layer of data in a DataSource object. You never create a Layer object directly. Instead, you retrieve them from a DataSource object, which is essentially a standard Python container of Layer objects. For example, you can access a specific layer by its index (e.g. ds[0] to access the first layer), or you can iterate over all the layers in the container in a for loop. The Layer itself acts as a container for geometric features.

    Typically, all the features in a given layer have the same geometry type. The property of a layer is an OGRGeomType that identifies the feature type. We can use it to print out some basic information about each layer in a :

    1. >>> for layer in ds:
    2. ... print('Layer "%s": %i %ss' % (layer.name, len(layer), layer.geom_type.name))
    3. ...
    4. Layer "cities": 3 Points

    The example output is from the cities data source, loaded above, which evidently contains one layer, called "cities", which contains three point features. For simplicity, the examples below assume that you’ve stored that layer in the variable layer:

    1. >>> layer = ds[0]
    • name

    Returns the name of this layer in the data source.

    1. >>> layer.name
    2. 'cities'
    • num_feat

    Returns the number of features in the layer. Same as len(layer):

    1. >>> layer.num_feat
    2. 3
    • geom_type

    Returns the geometry type of the layer, as an OGRGeomType object:

    1. >>> layer.geom_type.name
    2. 'Point'
    • num_fields

    Returns the number of fields in the layer, i.e the number of fields of data associated with each feature in the layer:

    1. >>> layer.num_fields
    2. 4
    • fields

    Returns a list of the names of each of the fields in this layer:

    1. >>> layer.fields
    2. ['Name', 'Population', 'Density', 'Created']

    Returns a list of the data types of each of the fields in this layer. These are subclasses of Field, discussed below:

    1. >>> [ft.__name__ for ft in layer.field_types]
    2. ['OFTString', 'OFTReal', 'OFTReal', 'OFTDate']
    • field_widths

    Returns a list of the maximum field widths for each of the fields in this layer:

    1. >>> layer.field_widths
    2. [80, 11, 24, 10]
    • field_precisions

    Returns a list of the numeric precisions for each of the fields in this layer. This is meaningless (and set to zero) for non-numeric fields:

    1. >>> layer.field_precisions
    2. [0, 0, 15, 0]
    • extent

    Returns the spatial extent of this layer, as an object:

    1. >>> layer.extent.tuple
    2. (-104.609252, 29.763374, -95.23506, 38.971823)
    • srs

    Property that returns the SpatialReference associated with this layer:

    1. >>> print(layer.srs)
    2. GEOGCS["GCS_WGS_1984",
    3. DATUM["WGS_1984",
    4. SPHEROID["WGS_1984",6378137,298.257223563]],
    5. PRIMEM["Greenwich",0],
    6. UNIT["Degree",0.017453292519943295]]

    If the has no spatial reference information associated with it, None is returned.

    • spatial_filter

    Property that may be used to retrieve or set a spatial filter for this layer. A spatial filter can only be set with an OGRGeometry instance, a 4-tuple extent, or None. When set with something other than None, only features that intersect the filter will be returned when iterating over the layer:

    1. >>> print(layer.spatial_filter)
    2. None
    3. >>> print(len(layer))
    4. 3
    5. >>> [feat.get('Name') for feat in layer]
    6. ['Pueblo', 'Lawrence', 'Houston']
    7. >>> ks_extent = (-102.051, 36.99, -94.59, 40.00) # Extent for state of Kansas
    8. >>> layer.spatial_filter = ks_extent
    9. >>> len(layer)
    10. 1
    11. >>> [feat.get('Name') for feat in layer]
    12. ['Lawrence']
    13. >>> layer.spatial_filter = None
    14. >>> len(layer)
    15. 3
    • get_fields()

    A method that returns a list of the values of a given field for each feature in the layer:

    1. >>> layer.get_fields('Name')
    2. ['Pueblo', 'Lawrence', 'Houston']
    • get_geoms(geos=False)

    A method that returns a list containing the geometry of each feature in the layer. If the optional argument geos is set to True then the geometries are converted to objects. Otherwise, they are returned as OGRGeometry objects:

    1. >>> [pt.tuple for pt in layer.get_geoms()]
    2. [(-104.609252, 38.255001), (-95.23506, 38.971823), (-95.363151, 29.763374)]
    • test_capability(capability)

    Returns a boolean indicating whether this layer supports the given capability (a string). Examples of valid capability strings include: 'RandomRead', 'SequentialWrite', 'RandomWrite', 'FastSpatialFilter', 'FastFeatureCount', 'FastGetExtent', 'CreateField', 'Transactions', 'DeleteFeature', and 'FastSetNextByIndex'.

    Feature

    class Feature

    Feature wraps an OGR feature. You never create a Feature object directly. Instead, you retrieve them from a object. Each feature consists of a geometry and a set of fields containing additional properties. The geometry of a field is accessible via its geom property, which returns an OGRGeometry object. A Feature behaves like a standard Python container for its fields, which it returns as objects: you can access a field directly by its index or name, or you can iterate over a feature’s fields, e.g. in a for loop.

    • geom

    Returns the geometry for this feature, as an OGRGeometry object:

    1. >>> city.geom.tuple
    2. (-104.609252, 38.255001)
    • get

    A method that returns the value of the given field (specified by name) for this feature, not a Field wrapper object:

    1. >>> city.get('Population')
    2. 102121
    • geom_type

    Returns the type of geometry for this feature, as an OGRGeomType object. This will be the same for all features in a given layer and is equivalent to the property of the Layer object the feature came from.

    • num_fields

    Returns the number of fields of data associated with the feature. This will be the same for all features in a given layer and is equivalent to the property of the Layer object the feature came from.

    • fields

    Returns a list of the names of the fields of data associated with the feature. This will be the same for all features in a given layer and is equivalent to the property of the Layer object the feature came from.

    • fid

    Returns the feature identifier within the layer:

    1. >>> city.fid
    2. 0
    • layer_name

    Returns the name of the that the feature came from. This will be the same for all features in a given layer:

    1. >>> city.layer_name
    2. 'cities'
    • index

    A method that returns the index of the given field name. This will be the same for all features in a given layer:

    1. >>> city.index('Population')
    2. 1

    Field

    class Field

    • name

    Returns the name of this field:

    1. >>> city['Name'].name
    2. 'Name'
    • type

    Returns the OGR type of this field, as an integer. The FIELD_CLASSES dictionary maps these values onto subclasses of Field:

    1. >>> city['Density'].type
    2. 2
    • type_name

    Returns a string with the name of the data type of this field:

    1. >>> city['Name'].type_name
    2. 'String'
    • value

    Returns the value of this field. The Field class itself returns the value as a string, but each subclass returns the value in the most appropriate form:

    1. >>> city['Population'].value
    2. 102121
    • width

    Returns the width of this field:

    1. >>> city['Name'].width
    2. 80
    • precision

    Returns the numeric precision of this field. This is meaningless (and set to zero) for non-numeric fields:

    • as_double()

    Returns the value of the field as a double (float):

    1. >>> city['Density'].as_double()
    2. 874.7
    • as_int()

    Returns the value of the field as an integer:

    1. >>> city['Population'].as_int()
    2. 102121
    • as_string()

    Returns the value of the field as a string:

    1. >>> city['Name'].as_string()
    2. 'Pueblo'
    • as_datetime()

    Returns the value of the field as a tuple of date and time components:

    1. >>> city['Created'].as_datetime()
    2. (c_long(1999), c_long(5), c_long(23), c_long(0), c_long(0), c_long(0), c_long(0))

    class Driver(dr_input)

    The Driver class is used internally to wrap an OGR DataSource driver.

    • driver_count

    Returns the number of OGR vector drivers currently registered.

    OGRGeometry

    objects share similar functionality with GEOSGeometry objects and are thin wrappers around OGR’s internal geometry representation. Thus, they allow for more efficient access to data when using . Unlike its GEOS counterpart, OGRGeometry supports spatial reference systems and coordinate transformation:

    1. >>> from django.contrib.gis.gdal import OGRGeometry
    2. >>> polygon = OGRGeometry('POLYGON((0 0, 5 0, 5 5, 0 5))')

    class OGRGeometry(geom_input, srs=None)

    This object is a wrapper for the class. These objects are instantiated directly from the given geom_input parameter, which may be a string containing WKT, HEX, GeoJSON, a buffer containing WKB data, or an OGRGeomType object. These objects are also returned from the attribute, when reading vector data from Layer (which is in turn a part of a ).

    • classmethod from_gml(gml_string)

    Constructs an OGRGeometry from the given GML string.

    • classmethod from_bbox(bbox)

    Constructs a from the given bounding-box (a 4-tuple).

    • __len__()

    Returns the number of points in a LineString, the number of rings in a , or the number of geometries in a GeometryCollection. Not applicable to other geometry types.

    • __iter__()

    Iterates over the points in a , the rings in a Polygon, or the geometries in a . Not applicable to other geometry types.

    • __getitem__()

    Returns the point at the specified index for a LineString, the interior ring at the specified index for a , or the geometry at the specified index in a GeometryCollection. Not applicable to other geometry types.

    • dimension

    Returns the number of coordinated dimensions of the geometry, i.e. 0 for points, 1 for lines, and so forth:

    1. >> polygon.dimension
    2. 2
    • coord_dim

    Returns or sets the coordinate dimension of this geometry. For example, the value would be 2 for two-dimensional geometries.

    • geom_count

    Returns the number of elements in this geometry:

    1. >>> polygon.geom_count
    2. 1
    • point_count

    Returns the number of points used to describe this geometry:

    1. >>> polygon.point_count
    2. 4
    • num_points

    Alias for .

    • num_coords

    Alias for point_count.

    • geom_type

    Returns the type of this geometry, as an object.

    • geom_name

    Returns the name of the type of this geometry:

    1. >>> polygon.geom_name
    2. 'POLYGON'
    • area

    Returns the area of this geometry, or 0 for geometries that do not contain an area:

    1. >>> polygon.area
    2. 25.0
    • envelope

    Returns the envelope of this geometry, as an Envelope object.

    • extent

    Returns the envelope of this geometry as a 4-tuple, instead of as an object:

    1. >>> point.extent
    2. (0.0, 0.0, 5.0, 5.0)
    • srs

    This property controls the spatial reference for this geometry, or None if no spatial reference system has been assigned to it. If assigned, accessing this property returns a SpatialReference object. It may be set with another object, or any input that SpatialReference accepts. Example:

    1. >>> city.geom.srs.name
    2. 'GCS_WGS_1984'
    • srid

    Returns or sets the spatial reference identifier corresponding to of this geometry. Returns None if there is no spatial reference information associated with this geometry, or if an SRID cannot be determined.

    • geos

    Returns a GEOSGeometry object corresponding to this geometry.

    • gml

    Returns a string representation of this geometry in GML format:

    1. >>> OGRGeometry('POINT(1 2)').gml
    2. '<gml:Point><gml:coordinates>1,2</gml:coordinates></gml:Point>'
    • hex

    Returns a string representation of this geometry in HEX WKB format:

    1. >>> OGRGeometry('POINT(1 2)').hex
    2. '0101000000000000000000F03F0000000000000040'
    • json

    Returns a string representation of this geometry in JSON format:

    1. >>> OGRGeometry('POINT(1 2)').json
    2. '{ "type": "Point", "coordinates": [ 1.000000, 2.000000 ] }'
    • kml

    Returns a string representation of this geometry in KML format.

    • wkb_size

    Returns the size of the WKB buffer needed to hold a WKB representation of this geometry:

    1. 21
    • wkb

    Returns a buffer containing a WKB representation of this geometry.

    • wkt

    Returns a string representation of this geometry in WKT format.

    • ewkt

    Returns the EWKT representation of this geometry.

    • clone()

    Returns a new clone of this geometry object.

    • close_rings()

    If there are any rings within this geometry that have not been closed, this routine will do so by adding the starting point to the end:

    1. >>> triangle = OGRGeometry('LINEARRING (0 0,0 1,1 0)')
    2. >>> triangle.close_rings()
    3. >>> triangle.wkt
    4. 'LINEARRING (0 0,0 1,1 0,0 0)'
    • transform(coord_trans, clone=False)

    Transforms this geometry to a different spatial reference system. May take a CoordTransform object, a object, or any other input accepted by SpatialReference (including spatial reference WKT and PROJ strings, or an integer SRID).

    By default nothing is returned and the geometry is transformed in-place. However, if the clone keyword is set to True then a transformed clone of this geometry is returned instead.

    • (other)

    Returns True if this geometry intersects the other, otherwise returns False.

    • equals(other)

    Returns True if this geometry is equivalent to the other, otherwise returns False.

    • disjoint(other)

    Returns True if this geometry is spatially disjoint to (i.e. does not intersect) the other, otherwise returns False.

    • touches(other)

    Returns True if this geometry touches the other, otherwise returns False.

    • crosses(other)

    Returns True if this geometry crosses the other, otherwise returns False.

    • within(other)

    Returns True if this geometry is contained within the other, otherwise returns False.

    • contains(other)

    Returns True if this geometry contains the other, otherwise returns False.

    • overlaps(other)

    Returns True if this geometry overlaps the other, otherwise returns False.

    • boundary()

    The boundary of this geometry, as a new object.

    • convex_hull

    The smallest convex polygon that contains this geometry, as a new OGRGeometry object.

    • difference()

    Returns the region consisting of the difference of this geometry and the other, as a new object.

    • intersection()

    Returns the region consisting of the intersection of this geometry and the other, as a new OGRGeometry object.

    • sym_difference()
    • union()

    Returns the region consisting of the union of this geometry and the other, as a new object.

    • tuple

    Returns the coordinates of a point geometry as a tuple, the coordinates of a line geometry as a tuple of tuples, and so forth:

    1. >>> OGRGeometry('POINT (1 2)').tuple
    2. (1.0, 2.0)
    3. >>> OGRGeometry('LINESTRING (1 2,3 4)').tuple
    4. ((1.0, 2.0), (3.0, 4.0))
    • coords

    An alias for tuple.

    class Point

    • x

    Returns the X coordinate of this point:

    1. >>> OGRGeometry('POINT (1 2)').x
    2. 1.0
    • y

    Returns the Y coordinate of this point:

    1. >>> OGRGeometry('POINT (1 2)').y
    2. 2.0
    • z

    Returns the Z coordinate of this point, or None if the point does not have a Z coordinate:

    1. >>> OGRGeometry('POINT (1 2 3)').z
    2. 3.0

    class LineString

    • x

    Returns a list of X coordinates in this line:

    1. >>> OGRGeometry('LINESTRING (1 2,3 4)').x
    2. [1.0, 3.0]
    • y

    Returns a list of Y coordinates in this line:

    1. >>> OGRGeometry('LINESTRING (1 2,3 4)').y
    2. [2.0, 4.0]
    • z

    Returns a list of Z coordinates in this line, or None if the line does not have Z coordinates:

    1. >>> OGRGeometry('LINESTRING (1 2 3,4 5 6)').z
    2. [3.0, 6.0]

    class Polygon

    • shell

    Returns the shell or exterior ring of this polygon, as a LinearRing geometry.

    • exterior_ring

    An alias for .

    • centroid

    Returns a Point representing the centroid of this polygon.

    class GeometryCollection

    • add(geom)

    Adds a geometry to this geometry collection. Not applicable to other geometry types.

    OGRGeomType

    class OGRGeomType(type_input)

    This class allows for the representation of an OGR geometry type in any of several ways:

    1. >>> from django.contrib.gis.gdal import OGRGeomType
    2. >>> gt1 = OGRGeomType(3) # Using an integer for the type
    3. >>> gt2 = OGRGeomType('Polygon') # Using a string
    4. >>> gt3 = OGRGeomType('POLYGON') # It's case-insensitive
    5. >>> print(gt1 == 3, gt1 == 'Polygon') # Equivalence works w/non-OGRGeomType objects
    6. True True
    • name

    Returns a short-hand string form of the OGR Geometry type:

    1. >>> gt1.name
    2. 'Polygon'
    • num

    Returns the number corresponding to the OGR geometry type:

    • django

    Returns the Django field type (a subclass of GeometryField) to use for storing this OGR type, or None if there is no appropriate Django type:

    1. >>> gt1.django
    2. 'PolygonField'

    Envelope

    class Envelope(\args*)

    Represents an OGR Envelope structure that contains the minimum and maximum X, Y coordinates for a rectangle bounding box. The naming of the variables is compatible with the OGR Envelope C structure.

    • min_x

    The value of the minimum X coordinate.

    • min_y

    The value of the maximum X coordinate.

    • max_x

    The value of the minimum Y coordinate.

    • max_y

    The value of the maximum Y coordinate.

    • ur

    The upper-right coordinate, as a tuple.

    • ll

    The lower-left coordinate, as a tuple.

    • tuple

    A tuple representing the envelope.

    • wkt

    A string representing this envelope as a polygon in WKT format.

    • expand_to_include(\args*)

    Coordinate System Objects

    SpatialReference

    class SpatialReference(srs_input)

    Spatial reference objects are initialized on the given srs_input, which may be one of the following:

    • OGC Well Known Text (WKT) (a string)
    • EPSG code (integer or string)
    • PROJ string
    • A shorthand string for well-known standards ('WGS84', 'WGS72', 'NAD27', 'NAD83')

    举例:

    1. >>> wgs84 = SpatialReference('WGS84') # shorthand string
    2. >>> wgs84 = SpatialReference(4326) # EPSG code
    3. >>> wgs84 = SpatialReference('EPSG:4326') # EPSG string
    4. >>> proj = '+proj=longlat +ellps=WGS84 +datum=WGS84 +no_defs '
    5. >>> wgs84 = SpatialReference(proj) # PROJ string
    6. >>> wgs84 = SpatialReference("""GEOGCS["WGS 84",
    7. DATUM["WGS_1984",
    8. SPHEROID["WGS 84",6378137,298.257223563,
    9. AUTHORITY["EPSG","7030"]],
    10. AUTHORITY["EPSG","6326"]],
    11. PRIMEM["Greenwich",0,
    12. AUTHORITY["EPSG","8901"]],
    13. UNIT["degree",0.01745329251994328,
    14. AUTHORITY["EPSG","9122"]],
    15. AUTHORITY["EPSG","4326"]]""") # OGC WKT
    • __getitem__(target)

    Returns the value of the given string attribute node, None if the node doesn’t exist. Can also take a tuple as a parameter, (target, child), where child is the index of the attribute in the WKT. For example:

    1. >>> wkt = 'GEOGCS["WGS 84", DATUM["WGS_1984, ... AUTHORITY["EPSG","4326"]]')
    2. >>> srs = SpatialReference(wkt) # could also use 'WGS84', or 4326
    3. >>> print(srs['GEOGCS'])
    4. WGS 84
    5. >>> print(srs['DATUM'])
    6. WGS_1984
    7. >>> print(srs['AUTHORITY'])
    8. EPSG
    9. >>> print(srs['AUTHORITY', 1]) # The authority value
    10. 4326
    11. >>> print(srs['TOWGS84', 4]) # the fourth value in this wkt
    12. 0
    13. >>> print(srs['UNIT|AUTHORITY']) # For the units authority, have to use the pipe symbol.
    14. EPSG
    15. >>> print(srs['UNIT|AUTHORITY', 1]) # The authority value for the units
    16. 9122
    • attr_value(target, index=0)

    The attribute value for the given target node (e.g. 'PROJCS'). The index keyword specifies an index of the child node to return.

    • auth_name(target)

    Returns the authority name for the given string target node.

    • auth_code(target)

    Returns the authority code for the given string target node.

    • clone()

    Returns a clone of this spatial reference object.

    • identify_epsg()

    This method inspects the WKT of this SpatialReference and will add EPSG authority nodes where an EPSG identifier is applicable.

    • from_esri()

    Morphs this SpatialReference from ESRI’s format to EPSG

    • to_esri()

    Morphs this SpatialReference to ESRI’s format.

    • validate()

    Checks to see if the given spatial reference is valid, if not an exception will be raised.

    • import_epsg(epsg)

    Import spatial reference from EPSG code.

    • import_proj(proj)

    Import spatial reference from PROJ string.

    • import_user_input(user_input)

    • import_wkt(wkt)

    Import spatial reference from WKT.

    • import_xml(xml)

    Import spatial reference from XML.

    • name

    Returns the name of this Spatial Reference.

    • srid

    Returns the SRID of top-level authority, or None if undefined.

    • linear_name

    Returns the name of the linear units.

    • linear_units

    Returns the value of the linear units.

    • angular_name

    Returns the name of the angular units.”

    • angular_units

    Returns the value of the angular units.

    • units

    Returns a 2-tuple of the units value and the units name and will automatically determines whether to return the linear or angular units.

    • ellipsoid

    Returns a tuple of the ellipsoid parameters for this spatial reference: (semimajor axis, semiminor axis, and inverse flattening).

    • semi_major

    Returns the semi major axis of the ellipsoid for this spatial reference.

    • semi_minor

    Returns the semi minor axis of the ellipsoid for this spatial reference.

    • inverse_flattening

    Returns the inverse flattening of the ellipsoid for this spatial reference.

    • geographic

    Returns True if this spatial reference is geographic (root node is GEOGCS).

    • local

    Returns True if this spatial reference is local (root node is LOCAL_CS).

    • projected

    Returns True if this spatial reference is a projected coordinate system (root node is PROJCS).

    • wkt

    Returns the WKT representation of this spatial reference.

    • pretty_wkt

    Returns the ‘pretty’ representation of the WKT.

    • proj

    Returns the PROJ representation for this spatial reference.

    • proj4

    Alias for .

    • xml

    Returns the XML representation of this spatial reference.

    class CoordTransform(source, target)

    Represents a coordinate system transform. It is initialized with two SpatialReference, representing the source and target coordinate systems, respectively. These objects should be used when performing the same coordinate transformation repeatedly on different geometries:

    1. >>> ct = CoordTransform(SpatialReference('WGS84'), SpatialReference('NAD83'))
    2. >>> for feat in layer:
    3. ... geom = feat.geom # getting clone of feature geometry
    4. ... geom.transform(ct) # transforming

    GDALRaster

    is a wrapper for the GDAL raster source object that supports reading data from a variety of GDAL-supported geospatial file formats and data sources using a consistent interface. Each data source is represented by a GDALRaster object which contains one or more layers of data named bands. Each band, represented by a object, contains georeferenced image data. For example, an RGB image is represented as three bands: one for red, one for green, and one for blue.

    注解

    For raster data there is no difference between a raster instance and its data source. Unlike for the Geometry objects, GDALRaster objects are always a data source. Temporary rasters can be instantiated in memory using the corresponding driver, but they will be of the same class as file-based raster sources.

    class GDALRaster(ds_input, write=False)

    The constructor for GDALRaster accepts two parameters. The first parameter defines the raster source, and the second parameter defines if a raster should be opened in write mode. For newly-created rasters, the second parameter is ignored and the new raster is always created in write mode.

    The first parameter can take three forms: a string representing a file path, a dictionary with values defining a new raster, or a bytes object representing a raster file.

    If the input is a file path, the raster is opened from there. If the input is raw data in a dictionary, the parameters width, height, and srid are required. If the input is a bytes object, it will be opened using a GDAL virtual filesystem.

    For a detailed description of how to create rasters using dictionary input, see . For a detailed description of how to create rasters in the virtual filesystem, see Using GDAL’s Virtual Filesystem.

    The following example shows how rasters can be created from different input sources (using the sample data from the GeoDjango tests; see also the section).

    1. >>> from django.contrib.gis.gdal import GDALRaster
    2. >>> rst = GDALRaster('/path/to/your/raster.tif', write=False)
    3. >>> rst.name
    4. '/path/to/your/raster.tif'
    5. >>> rst.width, rst.height # This file has 163 x 174 pixels
    6. (163, 174)
    7. >>> rst = GDALRaster({ # Creates an in-memory raster
    8. ... 'srid': 4326,
    9. ... 'width': 4,
    10. ... 'height': 4,
    11. ... 'datatype': 1,
    12. ... 'bands': [{
    13. ... 'data': (2, 3),
    14. ... 'offset': (1, 1),
    15. ... 'size': (2, 2),
    16. ... 'shape': (2, 1),
    17. ... 'nodata_value': 5,
    18. ... }]
    19. ... })
    20. >>> rst.srs.srid
    21. 4326
    22. >>> rst.width, rst.height
    23. (4, 4)
    24. >>> rst.bands[0].data()
    25. array([[5, 5, 5, 5],
    26. [5, 2, 3, 5],
    27. [5, 2, 3, 5],
    28. [5, 5, 5, 5]], dtype=uint8)
    29. >>> rst_file = open('/path/to/your/raster.tif', 'rb')
    30. >>> rst_bytes = rst_file.read()
    31. >>> rst = GDALRaster(rst_bytes)
    32. >>> rst.is_vsi_based
    33. True
    34. >>> rst.name # Stored in a random path in the vsimem filesystem.
    35. '/vsimem/da300bdb-129d-49a8-b336-e410a9428dad'
    • name

      The name of the source which is equivalent to the input file path or the name provided upon instantiation.

      1. >>> GDALRaster({'width': 10, 'height': 10, 'name': 'myraster', 'srid': 4326}).name
      2. 'myraster'
    • driver

      The name of the GDAL driver used to handle the input file. For GDALRasters created from a file, the driver type is detected automatically. The creation of rasters from scratch is an in-memory raster by default ('MEM'), but can be altered as needed. For instance, use GTiff for a GeoTiff file. For a list of file types, see also the GDAL Raster Formats list.

      An in-memory raster is created through the following example:

      1. >>> GDALRaster({'width': 10, 'height': 10, 'srid': 4326}).driver.name

      A file based GeoTiff raster is created through the following example:

      1. >>> import tempfile
      2. >>> rstfile = tempfile.NamedTemporaryFile(suffix='.tif')
      3. >>> rst = GDALRaster({'driver': 'GTiff', 'name': rstfile.name, 'srid': 4326,
      4. ... 'width': 255, 'height': 255, 'nr_of_bands': 1})
      5. >>> rst.name
      6. '/tmp/tmp7x9H4J.tif' # The exact filename will be different on your computer
      7. >>> rst.driver.name
      8. 'GTiff'
    • width

      The width of the source in pixels (X-axis).

      1. >>> GDALRaster({'width': 10, 'height': 20, 'srid': 4326}).width
      2. 10
    • height

      The height of the source in pixels (Y-axis).

      1. >>> GDALRaster({'width': 10, 'height': 20, 'srid': 4326}).height
      2. 20
    • srs

      The spatial reference system of the raster, as a instance. The SRS can be changed by setting it to an other SpatialReference or providing any input that is accepted by the constructor.

      1. >>> rst = GDALRaster({'width': 10, 'height': 20, 'srid': 4326})
      2. >>> rst.srs.srid
      3. 4326
      4. >>> rst.srs = 3086
      5. >>> rst.srs.srid
      6. 3086
    • srid

      The Spatial Reference System Identifier (SRID) of the raster. This property is a shortcut to getting or setting the SRID through the srs attribute.

      1. >>> rst = GDALRaster({'width': 10, 'height': 20, 'srid': 4326})
      2. >>> rst.srid
      3. 4326
      4. >>> rst.srid = 3086
      5. >>> rst.srid
      6. 3086
      7. >>> rst.srs.srid # This is equivalent
      8. 3086
    • geotransform

      The affine transformation matrix used to georeference the source, as a tuple of six coefficients which map pixel/line coordinates into georeferenced space using the following relationship:

      1. Xgeo = GT(0) + Xpixel*GT(1) + Yline*GT(2)
      2. Ygeo = GT(3) + Xpixel*GT(4) + Yline*GT(5)

      The same values can be retrieved by accessing the (indices 0 and 3), scale (indices 1 and 5) and (indices 2 and 4) properties.

      The default is [0.0, 1.0, 0.0, 0.0, 0.0, -1.0].

      1. >>> rst = GDALRaster({'width': 10, 'height': 20, 'srid': 4326})
      2. >>> rst.geotransform
      3. [0.0, 1.0, 0.0, 0.0, 0.0, -1.0]
    • 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.

      1. >>> rst = GDALRaster({'width': 10, 'height': 20, 'srid': 4326})
      2. >>> rst.origin
      3. [0.0, 0.0]
      4. >>> rst.origin.x = 1
      5. >>> rst.origin
      6. [1.0, 0.0]
    • scale

      Pixel width and height used for georeferencing the raster, as a point object with x and y members. See geotransform for more information.

      1. >>> rst = GDALRaster({'width': 10, 'height': 20, 'srid': 4326})
      2. >>> rst.scale
      3. [1.0, -1.0]
      4. >>> rst.scale.x = 2
      5. >>> rst.scale
      6. [2.0, -1.0]
    • Skew coefficients used to georeference the raster, as a point object with x and y members. In case of north up images, these coefficients are both 0.

      1. >>> rst = GDALRaster({'width': 10, 'height': 20, 'srid': 4326})
      2. >>> rst.skew
      3. [0.0, 0.0]
      4. >>> rst.skew.x = 3
      5. >>> rst.skew
    • extent

      Extent (boundary values) of the raster source, as a 4-tuple (xmin, ymin, xmax, ymax) in the spatial reference system of the source.

      1. >>> rst = GDALRaster({'width': 10, 'height': 20, 'srid': 4326})
      2. >>> rst.extent
      3. (0.0, -20.0, 10.0, 0.0)
      4. >>> rst.origin.x = 100
      5. >>> rst.extent
      6. (100.0, -20.0, 110.0, 0.0)
    • bands

      List of all bands of the source, as instances.

      1. >>> rst = GDALRaster({"width": 1, "height": 2, 'srid': 4326,
      2. ... "bands": [{"data": [0, 1]}, {"data": [2, 3]}]})
      3. >>> len(rst.bands)
      4. 2
      5. >>> rst.bands[1].data()
      6. array([[ 2., 3.]], dtype=float32)
    • warp(ds_input, resampling=’NearestNeighbour’, max_error=0.0)

      Returns a warped version of this raster.

      The warping parameters can be specified through the ds_input argument. The use of ds_input is analogous to the corresponding argument of the class constructor. It is a dictionary with the characteristics of the target raster. Allowed dictionary key values are width, height, SRID, origin, scale, skew, datatype, driver, and name (filename).

      By default, the warp functions keeps most parameters equal to the values of the original source raster, so only parameters that should be changed need to be specified. Note that this includes the driver, so for file-based rasters the warp function will create a new raster on disk.

      The only parameter that is set differently from the source raster is the name. The default value of the raster name is the name of the source raster appended with '_copy' + source_driver_name. For file-based rasters it is recommended to provide the file path of the target raster.

      The resampling algorithm used for warping can be specified with the resampling argument. The default is NearestNeighbor, and the other allowed values are Bilinear, Cubic, CubicSpline, Lanczos, Average, and Mode.

      The max_error argument can be used to specify the maximum error measured in input pixels that is allowed in approximating the transformation. The default is 0.0 for exact calculations.

      For users familiar with GDAL, this function has a similar functionality to the gdalwarp command-line utility.

      For example, the warp function can be used for aggregating a raster to the double of its original pixel scale:

      1. >>> rst = GDALRaster({
      2. ... "width": 6, "height": 6, "srid": 3086,
      3. ... "origin": [500000, 400000],
      4. ... "scale": [100, -100],
      5. ... "bands": [{"data": range(36), "nodata_value": 99}]
      6. ... })
      7. >>> target = rst.warp({"scale": [200, -200], "width": 3, "height": 3})
      8. >>> target.bands[0].data()
      9. array([[ 7., 9., 11.],
      10. [ 19., 21., 23.],
      11. [ 31., 33., 35.]], dtype=float32)
    • transform(srs, driver=None, name=None, resampling=’NearestNeighbour’, max_error=0.0)

      Transforms this raster to a different spatial reference system (srs), which may be a SpatialReference object, or any other input accepted by (including spatial reference WKT and PROJ strings, or an integer SRID).

      It calculates the bounds and scale of the current raster in the new spatial reference system and warps the raster using the warp function.

      By default, the driver of the source raster is used and the name of the raster is the original name appended with '_copy' + source_driver_name. A different driver or name can be specified with the driver and name arguments.

      The default resampling algorithm is NearestNeighbour but can be changed using the resampling argument. The default maximum allowed error for resampling is 0.0 and can be changed using the max_error argument. Consult the documentation for detail on those arguments.

      1. >>> rst = GDALRaster({
      2. ... "width": 6, "height": 6, "srid": 3086,
      3. ... "origin": [500000, 400000],
      4. ... "scale": [100, -100],
      5. ... "bands": [{"data": range(36), "nodata_value": 99}]
      6. ... })
      7. >>> target_srs = SpatialReference(4326)
      8. >>> target = rst.transform(target_srs)
      9. >>> target.origin
      10. [-82.98492744885776, 27.601924753080144]

      Changed in Django Development version:

      Support for SpatialReference srs was added

    • info

      Returns a string with a summary of the raster. This is equivalent to the command line utility.

    • metadata

      The metadata of this raster, represented as a nested dictionary. The first-level key is the metadata domain. The second-level contains the metadata item names and values from each domain.

      To set or update a metadata item, pass the corresponding metadata item to the method using the nested structure described above. Only keys that are in the specified dictionary are updated; the rest of the metadata remains unchanged.

      To remove a metadata item, use None as the metadata value.

      1. >>> rst = GDALRaster({'width': 10, 'height': 20, 'srid': 4326})
      2. >>> rst.metadata
      3. {}
      4. >>> rst.metadata = {'DEFAULT': {'OWNER': 'Django', 'VERSION': '1.0'}}
      5. >>> rst.metadata
      6. {'DEFAULT': {'OWNER': 'Django', 'VERSION': '1.0'}}
      7. >>> rst.metadata = {'DEFAULT': {'OWNER': None, 'VERSION': '2.0'}}
      8. >>> rst.metadata
      9. {'DEFAULT': {'VERSION': '2.0'}}
    • vsi_buffer

      A bytes representation of this raster. Returns None for rasters that are not stored in GDAL’s virtual filesystem.

    • is_vsi_based

      A boolean indicating if this raster is stored in GDAL’s virtual filesystem.

    GDALBand

    class GDALBand

    GDALBand instances are not created explicitly, but rather obtained from a GDALRaster object, through its attribute. The GDALBands contain the actual pixel values of the raster.

    • description

      The name or description of the band, if any.

    • width

      The width of the band in pixels (X-axis).

    • height

      The height of the band in pixels (Y-axis).

    • pixel_count

      The total number of pixels in this band. Is equal to width * height.

    • statistics(refresh=False, approximate=False)

      Compute statistics on the pixel values of this band. The return value is a tuple with the following structure: (minimum, maximum, mean, standard deviation).

      If the approximate argument is set to True, the statistics may be computed based on overviews or a subset of image tiles.

      If the refresh argument is set to True, the statistics will be computed from the data directly, and the cache will be updated with the result.

      If a persistent cache value is found, that value is returned. For raster formats using Persistent Auxiliary Metadata (PAM) services, the statistics might be cached in an auxiliary file. In some cases this metadata might be out of sync with the pixel values or cause values from a previous call to be returned which don’t reflect the value of the approximate argument. In such cases, use the refresh argument to get updated values and store them in the cache.

      For empty bands (where all pixel values are “no data”), all statistics are returned as None.

      The statistics can also be retrieved directly by accessing the min, , mean, and properties.

    • min

      The minimum pixel value of the band (excluding the “no data” value).

    • max

      The maximum pixel value of the band (excluding the “no data” value).

    • mean

      The mean of all pixel values of the band (excluding the “no data” value).

    • std

      The standard deviation of all pixel values of the band (excluding the “no data” value).

    • nodata_value

      The “no data” value for a band is generally a special marker value used to mark pixels that are not valid data. Such pixels should generally not be displayed, nor contribute to analysis operations.

      To delete an existing “no data” value, set this property to None (requires GDAL ≥ 2.1).

    • datatype(as_string=False)

      The data type contained in the band, as an integer constant between 0 (Unknown) and 11. If as_string is True, the data type is returned as a string with the following possible values: GDT_Unknown, GDT_Byte, GDT_UInt16, GDT_Int16, GDT_UInt32, GDT_Int32, GDT_Float32, GDT_Float64, GDT_CInt16, GDT_CInt32, GDT_CFloat32, and GDT_CFloat64.

    • color_interp(as_string=False)

      The color interpretation for the band, as an integer between 0and 16. If as_string is True, the data type is returned as a string with the following possible values: GCI_Undefined, GCI_GrayIndex, GCI_PaletteIndex, GCI_RedBand, GCI_GreenBand, GCI_BlueBand, GCI_AlphaBand, GCI_HueBand, GCI_SaturationBand, GCI_LightnessBand, GCI_CyanBand, GCI_MagentaBand, GCI_YellowBand, GCI_BlackBand, GCI_YCbCr_YBand, GCI_YCbCr_CbBand, and GCI_YCbCr_CrBand. GCI_YCbCr_CrBand also represents GCI_Max because both correspond to the integer 16, but only GCI_YCbCr_CrBand is returned as a string.

    • data(data=None, offset=None, size=None, shape=None)

      The accessor to the pixel values of the GDALBand. Returns the complete data array if no parameters are provided. A subset of the pixel array can be requested by specifying an offset and block size as tuples.

      If NumPy is available, the data is returned as NumPy array. For performance reasons, it is highly recommended to use NumPy.

      Data is written to the GDALBand if the data parameter is provided. The input can be of one of the following types - packed string, buffer, list, array, and NumPy array. The number of items in the input should normally correspond to the total number of pixels in the band, or to the number of pixels for a specific block of pixel values if the offset and size parameters are provided.

      If the number of items in the input is different from the target pixel block, the shape parameter must be specified. The shape is a tuple that specifies the width and height of the input data in pixels. The data is then replicated to update the pixel values of the selected block. This is useful to fill an entire band with a single value, for instance.

      例如:

      1. >>> rst = GDALRaster({'width': 4, 'height': 4, 'srid': 4326, 'datatype': 1, 'nr_of_bands': 1})
      2. >>> bnd = rst.bands[0]
      3. >>> bnd.data(range(16))
      4. >>> bnd.data()
      5. array([[ 0, 1, 2, 3],
      6. [ 4, 5, 6, 7],
      7. [ 8, 9, 10, 11],
      8. [12, 13, 14, 15]], dtype=int8)
      9. >>> bnd.data(offset=(1, 1), size=(2, 2))
      10. array([[ 5, 6],
      11. [ 9, 10]], dtype=int8)
      12. >>> bnd.data(data=[-1, -2, -3, -4], offset=(1, 1), size=(2, 2))
      13. >>> bnd.data()
      14. array([[ 0, 1, 2, 3],
      15. [ 4, -1, -2, 7],
      16. [ 8, -3, -4, 11],
      17. [12, 13, 14, 15]], dtype=int8)
      18. >>> bnd.data(data='\x9d\xa8\xb3\xbe', offset=(1, 1), size=(2, 2))
      19. >>> bnd.data()
      20. array([[ 0, 1, 2, 3],
      21. [ 4, -99, -88, 7],
      22. [ 8, -77, -66, 11],
      23. [ 12, 13, 14, 15]], dtype=int8)
      24. >>> bnd.data([1], shape=(1, 1))
      25. >>> bnd.data()
      26. array([[1, 1, 1, 1],
      27. [1, 1, 1, 1],
      28. [1, 1, 1, 1],
      29. [1, 1, 1, 1]], dtype=uint8)
      30. >>> bnd.data(range(4), shape=(1, 4))
      31. array([[0, 0, 0, 0],
      32. [1, 1, 1, 1],
      33. [2, 2, 2, 2],
      34. [3, 3, 3, 3]], dtype=uint8)
    • metadata

      The metadata of this band. The functionality is identical to GDALRaster.metadata.

    Creating rasters from data

    This section describes how to create rasters from scratch using the ds_input parameter.

    A new raster is created when a dict is passed to the constructor. The dictionary contains defining parameters of the new raster, such as the origin, size, or spatial reference system. The dictionary can also contain pixel data and information about the format of the new raster. The resulting raster can therefore be file-based or memory-based, depending on the driver specified.

    There’s no standard for describing raster data in a dictionary or JSON flavor. The definition of the dictionary input to the GDALRaster class is therefore specific to Django. It’s inspired by the format, but the geojson standard is currently limited to vector formats.

    Examples of using the different keys when creating rasters can be found in the documentation of the corresponding attributes and methods of the GDALRaster and classes.

    The ds_input dictionary

    Only a few keys are required in the ds_input dictionary to create a raster: width, height, and srid. All other parameters have default values (see the table below). The list of keys that can be passed in the ds_input dictionary is closely related but not identical to the GDALRaster properties. Many of the parameters are mapped directly to those properties; the others are described below.

    The following table describes all keys that can be set in the ds_input dictionary.

    name

    String representing the name of the raster. When creating a file-based raster, this parameter must be the file path for the new raster. If the name starts with /vsimem/, the raster is created in GDAL’s virtual filesystem.

    datatype

    Integer representing the data type for all the bands. Defaults to 6 (Float32). All bands of a new raster are required to have the same datatype. The value mapping is:

    nr_of_bands

    Integer representing the number of bands of the raster. A raster can be created without passing band data upon creation. If the number of bands isn’t specified, it’s automatically calculated from the length of the bands input. The number of bands can’t be changed after creation.

    bands

    A list of band_input dictionaries with band input data. The resulting band indices are the same as in the list provided. The definition of the band input dictionary is given below. If band data isn’t provided, the raster bands values are instantiated as an array of zeros and the “no data” value is set to None.

    papsz_options

    A dictionary with raster creation options. The key-value pairs of the input dictionary are passed to the driver on creation of the raster.

    The available options are driver-specific and are described in the documentation of each driver.

    The values in the dictionary are not case-sensitive and are automatically converted to the correct string format upon creation.

    The following example uses some of the options available for the . The result is a compressed signed byte raster with an internal tiling scheme. The internal tiles have a block size of 23 by 23:

    1. >>> GDALRaster({
    2. ... 'driver': 'GTiff',
    3. ... 'name': '/path/to/new/file.tif',
    4. ... 'srid': 4326,
    5. ... 'width': 255,
    6. ... 'height': 255,
    7. ... 'nr_of_bands': 1,
    8. ... 'papsz_options': {
    9. ... 'compress': 'packbits',
    10. ... 'pixeltype': 'signedbyte',
    11. ... 'tiled': 'yes',
    12. ... 'blockxsize': 23,
    13. ... 'blockysize': 23,
    14. ... }
    15. ... })

    The band_input dictionary

    The bands key in the ds_input dictionary is a list of band_input dictionaries. Each band_input dictionary can contain pixel values and the “no data” value to be set on the bands of the new raster. The data array can have the full size of the new raster or be smaller. For arrays that are smaller than the full raster, the size, shape, and offset keys control the pixel values. The corresponding keys are passed to the data() method. Their functionality is the same as setting the band data with that method. The following table describes the keys that can be used.

    Using GDAL’s Virtual Filesystem

    GDAL has an internal memory-based filesystem, which allows treating blocks of memory as files. It can be used to read and write objects to and from binary file buffers.

    This is useful in web contexts where rasters might be obtained as a buffer from a remote storage or returned from a view without being written to disk.

    GDALRaster objects are created in the virtual filesystem when a bytes object is provided as input, or when the file path starts with /vsimem/.

    Input provided as bytes has to be a full binary representation of a file. For instance:

    1. # Read a raster as a file object from a remote source.
    2. >>> from urllib.request import urlopen
    3. >>> dat = urlopen('http://example.com/raster.tif').read()
    4. # Instantiate a raster from the bytes object.
    5. >>> rst = GDALRaster(dat)
    6. # The name starts with /vsimem/, indicating that the raster lives in the
    7. # virtual filesystem.
    8. >>> rst.name
    9. '/vsimem/da300bdb-129d-49a8-b336-e410a9428dad'

    To create a new virtual file-based raster from scratch, use the ds_input dictionary representation and provide a name argument that starts with /vsimem/ (for detail of the dictionary representation, see ). For virtual file-based rasters, the vsi_buffer attribute returns the bytes representation of the raster.

    Here’s how to create a raster and return it as a file in an :

    1. >>> from django.http import HttpResponse
    2. >>> rst = GDALRaster({
    3. ... 'name': '/vsimem/temporarymemfile',
    4. ... 'driver': 'tif',
    5. ... 'width': 6, 'height': 6, 'srid': 3086,
    6. ... 'origin': [500000, 400000],
    7. ... 'scale': [100, -100],
    8. ... 'bands': [{'data': range(36), 'nodata_value': 99}]
    9. >>> HttpResponse(rast.vsi_buffer, 'image/tiff')

    配置

    A string specifying the location of the GDAL library. Typically, this setting is only used if the GDAL library is in a non-standard location (e.g., /home/john/lib/libgdal.so).

    exception

    The base GDAL exception, indicating a GDAL-related error.

    exception SRSException

    An exception raised when an error occurs when constructing or using a spatial reference system object.