GeoDjango Model API

    Spatial fields consist of a series of geometry field types and one raster field type. Each of the geometry field types correspond to the OpenGIS Simple Features specification . There is no such standard for raster data.

    class GeometryField

    The base class for geometry fields.

    PointField

    class PointField

    Stores a Point.

    LineStringField

    class LineStringField

    Stores a .

    class PolygonField

    Stores a Polygon.

    class MultiPointField

    Stores a .

    MultiLineStringField

    class MultiLineStringField

    Stores a MultiLineString.

    MultiPolygonField

    class MultiPolygonField

    Stores a .

    GeometryCollectionField

    Stores a GeometryCollection.

    class RasterField

    Stores a .

    RasterField is currently only implemented for the PostGIS backend.

    In addition to the regular 字段选项 available for Django model fields, spatial fields have the following additional options. All are optional.

    srid

    BaseSpatialField.``srid

    Sets the SRID (Spatial Reference System Identity) of the geometry field to the given value. Defaults to 4326 (also known as WGS84, units are in degrees of longitude and latitude).

    Selecting an SRID

    Choosing an appropriate SRID for your model is an important decision that the developer should consider carefully. The SRID is an integer specifier that corresponds to the projection system that will be used to interpret the data in the spatial database. Projection systems give the context to the coordinates that specify a location. Although the details of geodesy are beyond the scope of this documentation, the general problem is that the earth is spherical and representations of the earth (e.g., paper maps, Web maps) are not.

    Most people are familiar with using latitude and longitude to reference a location on the earth’s surface. However, latitude and longitude are angles, not distances. In other words, while the shortest path between two points on a flat surface is a straight line, the shortest path between two points on a curved surface (such as the earth) is an arc of a . [4] Thus, additional computation is required to obtain distances in planar units (e.g., kilometers and miles). Using a geographic coordinate system may introduce complications for the developer later on. For example, SpatiaLite does not have the capability to perform distance calculations between geometries using geographic coordinate systems, e.g. constructing a query to find all points within 5 miles of a county boundary stored as WGS84.

    Portions of the earth’s surface may projected onto a two-dimensional, or Cartesian, plane. Projected coordinate systems are especially convenient for region-specific applications, e.g., if you know that your database will only cover geometries in North Kansas, then you may consider using projection system specific to that region. Moreover, projected coordinate systems are defined in Cartesian units (such as meters or feet), easing distance calculations.

    注解

    If you wish to perform arbitrary distance queries using non-point geometries in WGS84 in PostGIS and you want decent performance, enable the keyword so that geography database type is used instead.

    其他资源:

    • : A Django-powered database of spatial reference systems.

    spatial_index

    BaseSpatialField.``spatial_index

    Defaults to True. Creates a spatial index for the given geometry field.

    This is different from the db_index field option because spatial indexes are created in a different manner than regular database indexes. Specifically, spatial indexes are typically created using a variant of the R-Tree, while regular database indexes typically use B-Trees.

    There are additional options available for Geometry fields. All the following options are optional.

    dim

    GeometryField.``dim

    This option may be used for customizing the coordinate dimension of the geometry field. By default, it is set to 2, for representing two-dimensional geometries. For spatial backends that support it, it may be set to 3 for three-dimensional support.

    注解

    At this time 3D support is limited to the PostGIS and SpatiaLite backends.

    GeometryField.``geography

    If set to True, this option will create a database column of type geography, rather than geometry. Please refer to the geography type section below for more details.

    注解

    Geography support is limited to PostGIS and will force the SRID to be 4326.

    Geography Type

    The geography type provides native support for spatial features represented with geographic coordinates (e.g., WGS84 longitude/latitude). Unlike the plane used by a geometry type, the geography type uses a spherical representation of its data. Distance and measurement operations performed on a geography column automatically employ great circle arc calculations and return linear units. In other words, when ST_Distance is called on two geographies, a value in meters is returned (as opposed to degrees if called on a geometry column in WGS84).

    Because geography calculations involve more mathematics, only a subset of the PostGIS spatial lookups are available for the geography type. Practically, this means that in addition to the distance lookups only the following additional are available for geography columns:

    If you need to use a spatial lookup or aggregate that doesn’t support the geography type as input, you can use the Cast database function to convert the geography column to a geometry type in the query:

    1. from django.contrib.gis.db.models import PointField
    2. from django.db.models.functions import Cast
    3. Zipcode.objects.annotate(
    4. geom=Cast('geography_field', PointField())

    For more information, the PostGIS documentation contains a helpful section on determining .

    脚注

    [2]See id. at Ch. 2.3.8, p. 39 (Geometry Values and Spatial Reference Systems).
    Terry A. Slocum, Robert B. McMaster, Fritz C. Kessler, & Hugh H. Howard, Thematic Cartography and Geographic Visualization (Prentice Hall, 2nd edition), at Ch. 7.1.3.
    [6]Please refer to the documentation for more details.