GeoQuerySet API ReferenceLink para este cabeçalho
- class GeoQuerySet(model=None)Link para esta definição
Spatial LookupsLink para este cabeçalho
The spatial lookups in this section are available for GeometryField
and RasterField.
For an introduction, see the spatial lookups introduction. For an overview of what lookups are compatible with a particular spatial backend, refer to the spatial lookup compatibility table.
Lookups with rastersLink para este cabeçalho
All examples in the reference below are given for geometry fields and inputs, but the lookups can be used the same way with rasters on both sides. Whenever a lookup doesn’t support raster input, the input is automatically converted to a geometry where necessary using the ST_Polygon function. See also the introduction to raster lookups.
The database operators used by the lookups can be divided into three categories:
Native raster support
N: the operator accepts rasters natively on both sides of the lookup, and raster input can be mixed with geometry inputs.Bilateral raster support
B: the operator supports rasters only if both sides of the lookup receive raster inputs. Raster data is automatically converted to geometries for mixed lookups.Geometry conversion support
C. The lookup does not have native raster support, all raster data is automatically converted to geometries.
The examples below show the SQL equivalent for the lookups in the different types of raster support. The same pattern applies to all spatial lookups.
Case |
Lookup |
SQL Equivalent |
|---|---|---|
N, B |
|
|
N, B |
|
|
B, C |
|
|
B, C |
|
|
B, C |
|
|
B, C |
|
|
C |
|
|
C |
|
|
C |
|
|
C |
|
|
Spatial lookups with rasters are only supported for PostGIS backends (denominated as PGRaster in this section).
bbcontainsLink para este cabeçalho
Availability: PostGIS, MySQL, SpatiaLite, PGRaster (Native)
Tests if the geometry or raster field’s bounding box completely contains the lookup geometry’s bounding box.
Exemplo
Zipcode.objects.filter(poly__bbcontains=geom)
Backend |
SQL Equivalent |
|---|---|
PostGIS |
|
MySQL |
|
SpatiaLite |
|
bboverlapsLink para este cabeçalho
Availability: PostGIS, MySQL, SpatiaLite, PGRaster (Native)
Tests if the geometry field’s bounding box overlaps the lookup geometry’s bounding box.
Exemplo
Zipcode.objects.filter(poly__bboverlaps=geom)
Backend |
SQL Equivalent |
|---|---|
PostGIS |
|
MySQL |
|
SpatiaLite |
|
containedLink para este cabeçalho
Availability: PostGIS, MySQL, SpatiaLite, PGRaster (Native)
Tests if the geometry field’s bounding box is completely contained by the lookup geometry’s bounding box.
Exemplo
Zipcode.objects.filter(poly__contained=geom)
Backend |
SQL Equivalent |
|---|---|
PostGIS |
|
MySQL |
|
SpatiaLite |
|
containsLink para este cabeçalho
Availability: PostGIS, Oracle, MySQL, SpatiaLite, PGRaster (Bilateral)
Tests if the geometry field spatially contains the lookup geometry.
Exemplo
Zipcode.objects.filter(poly__contains=geom)
Backend |
SQL Equivalent |
|---|---|
PostGIS |
|
Oracle |
|
MySQL |
|
SpatiaLite |
|
contains_properlyLink para este cabeçalho
Availability: PostGIS, PGRaster (Bilateral)
Returns true if the lookup geometry intersects the interior of the geometry field, but not the boundary (or exterior).
Exemplo
Zipcode.objects.filter(poly__contains_properly=geom)
Backend |
SQL Equivalent |
|---|---|
PostGIS |
|
coveredbyLink para este cabeçalho
Availability: PostGIS, Oracle, PGRaster (Bilateral)
Tests if no point in the geometry field is outside the lookup geometry. [3]
Exemplo
Zipcode.objects.filter(poly__coveredby=geom)
Backend |
SQL Equivalent |
|---|---|
PostGIS |
|
Oracle |
|
coversLink para este cabeçalho
Availability: PostGIS, Oracle, PGRaster (Bilateral)
Tests if no point in the lookup geometry is outside the geometry field. [3]
Exemplo
Zipcode.objects.filter(poly__covers=geom)
Backend |
SQL Equivalent |
|---|---|
PostGIS |
|
Oracle |
|
crossesLink para este cabeçalho
Availability: PostGIS, SpatiaLite, PGRaster (Conversion)
Tests if the geometry field spatially crosses the lookup geometry.
Exemplo
Zipcode.objects.filter(poly__crosses=geom)
Backend |
SQL Equivalent |
|---|---|
PostGIS |
|
SpatiaLite |
|
disjointLink para este cabeçalho
Availability: PostGIS, Oracle, MySQL, SpatiaLite, PGRaster (Bilateral)
Tests if the geometry field is spatially disjoint from the lookup geometry.
Exemplo
Zipcode.objects.filter(poly__disjoint=geom)
Backend |
SQL Equivalent |
|---|---|
PostGIS |
|
Oracle |
|
MySQL |
|
SpatiaLite |
|
equalsLink para este cabeçalho
Availability: PostGIS, Oracle, MySQL, SpatiaLite, PGRaster (Conversion)
exact, same_asLink para este cabeçalho
Availability: PostGIS, Oracle, MySQL, SpatiaLite, PGRaster (Bilateral)
intersectsLink para este cabeçalho
Availability: PostGIS, Oracle, MySQL, SpatiaLite, PGRaster (Bilateral)
Tests if the geometry field spatially intersects the lookup geometry.
Exemplo
Zipcode.objects.filter(poly__intersects=geom)
Backend |
SQL Equivalent |
|---|---|
PostGIS |
|
Oracle |
|
MySQL |
|
SpatiaLite |
|
isvalidLink para este cabeçalho
Availability: PostGIS, Oracle, SpatiaLite
Tests if the geometry is valid.
Exemplo
Zipcode.objects.filter(poly__isvalid=True)
Backend |
SQL Equivalent |
|---|---|
PostGIS, SpatiaLite |
|
Oracle |
|
overlapsLink para este cabeçalho
Availability: PostGIS, Oracle, MySQL, SpatiaLite, PGRaster (Bilateral)
relateLink para este cabeçalho
Availability: PostGIS, Oracle, SpatiaLite, PGRaster (Conversion)
Tests if the geometry field is spatially related to the lookup geometry by
the values given in the given pattern. This lookup requires a tuple parameter,
(geom, pattern); the form of pattern will depend on the spatial backend:
PostGIS & SpatiaLiteLink para este cabeçalho
On these spatial backends the intersection pattern is a string comprising
nine characters, which define intersections between the interior, boundary,
and exterior of the geometry field and the lookup geometry.
The intersection pattern matrix may only use the following characters:
1, 2, T, F, or *. This lookup type allows users to “fine tune”
a specific geometric relationship consistent with the DE-9IM model. [1]
Geometry example:
# A tuple lookup parameter is used to specify the geometry and
# the intersection pattern (the pattern here is for 'contains').
Zipcode.objects.filter(poly__relate=(geom, 'T*T***FF*'))
PostGIS SQL equivalent:
SELECT ... WHERE ST_Relate(poly, geom, 'T*T***FF*')
SpatiaLite SQL equivalent:
SELECT ... WHERE Relate(poly, geom, 'T*T***FF*')
Raster example:
Zipcode.objects.filter(poly__relate=(rast, 1, 'T*T***FF*'))
Zipcode.objects.filter(rast__2__relate=(rast, 1, 'T*T***FF*'))
PostGIS SQL equivalent:
SELECT ... WHERE ST_Relate(poly, ST_Polygon(rast, 1), 'T*T***FF*')
SELECT ... WHERE ST_Relate(ST_Polygon(rast, 2), ST_Polygon(rast, 1), 'T*T***FF*')
OracleLink para este cabeçalho
Here the relation pattern is comprised of at least one of the nine relation
strings: TOUCH, OVERLAPBDYDISJOINT, OVERLAPBDYINTERSECT,
EQUAL, INSIDE, COVEREDBY, CONTAINS, COVERS, ON, and
ANYINTERACT. Multiple strings may be combined with the logical Boolean
operator OR, for example, 'inside+touch'. [2] The relation
strings are case-insensitive.
Exemplo
Zipcode.objects.filter(poly__relate=(geom, 'anyinteract'))
Oracle SQL equivalent:
SELECT ... WHERE SDO_RELATE(poly, geom, 'anyinteract')
touchesLink para este cabeçalho
Availability: PostGIS, Oracle, MySQL, SpatiaLite
Tests if the geometry field spatially touches the lookup geometry.
Exemplo
Zipcode.objects.filter(poly__touches=geom)
Backend |
SQL Equivalent |
|---|---|
PostGIS |
|
MySQL |
|
Oracle |
|
SpatiaLite |
|
withinLink para este cabeçalho
Availability: PostGIS, Oracle, MySQL, SpatiaLite, PGRaster (Bilateral)
Tests if the geometry field is spatially within the lookup geometry.
Exemplo
Zipcode.objects.filter(poly__within=geom)
Backend |
SQL Equivalent |
|---|---|
PostGIS |
|
MySQL |
|
Oracle |
|
SpatiaLite |
|
leftLink para este cabeçalho
Availability: PostGIS, PGRaster (Conversion)
Tests if the geometry field’s bounding box is strictly to the left of the lookup geometry’s bounding box.
Exemplo
Zipcode.objects.filter(poly__left=geom)
PostGIS equivalent:
SELECT ... WHERE poly << geom
rightLink para este cabeçalho
Availability: PostGIS, PGRaster (Conversion)
Tests if the geometry field’s bounding box is strictly to the right of the lookup geometry’s bounding box.
Exemplo
Zipcode.objects.filter(poly__right=geom)
PostGIS equivalent:
SELECT ... WHERE poly >> geom
overlaps_leftLink para este cabeçalho
Availability: PostGIS, PGRaster (Bilateral)
Tests if the geometry field’s bounding box overlaps or is to the left of the lookup geometry’s bounding box.
Exemplo
Zipcode.objects.filter(poly__overlaps_left=geom)
PostGIS equivalent:
SELECT ... WHERE poly &< geom
overlaps_rightLink para este cabeçalho
Availability: PostGIS, PGRaster (Bilateral)
Tests if the geometry field’s bounding box overlaps or is to the right of the lookup geometry’s bounding box.
Exemplo
Zipcode.objects.filter(poly__overlaps_right=geom)
PostGIS equivalent:
SELECT ... WHERE poly &> geom
overlaps_aboveLink para este cabeçalho
Availability: PostGIS, PGRaster (Conversion)
Tests if the geometry field’s bounding box overlaps or is above the lookup geometry’s bounding box.
Exemplo
Zipcode.objects.filter(poly__overlaps_above=geom)
PostGIS equivalent:
SELECT ... WHERE poly |&> geom
overlaps_belowLink para este cabeçalho
Availability: PostGIS, PGRaster (Conversion)
Tests if the geometry field’s bounding box overlaps or is below the lookup geometry’s bounding box.
Exemplo
Zipcode.objects.filter(poly__overlaps_below=geom)
PostGIS equivalent:
SELECT ... WHERE poly &<| geom
strictly_aboveLink para este cabeçalho
Availability: PostGIS, PGRaster (Conversion)
Tests if the geometry field’s bounding box is strictly above the lookup geometry’s bounding box.
Exemplo
Zipcode.objects.filter(poly__strictly_above=geom)
PostGIS equivalent:
SELECT ... WHERE poly |>> geom
strictly_belowLink para este cabeçalho
Availability: PostGIS, PGRaster (Conversion)
Tests if the geometry field’s bounding box is strictly below the lookup geometry’s bounding box.
Exemplo
Zipcode.objects.filter(poly__strictly_below=geom)
PostGIS equivalent:
SELECT ... WHERE poly <<| geom
Distance LookupsLink para este cabeçalho
Disponibilidade: PostGIS, Oracle, SpatiaLite, PGRaster (Native)
For an overview on performing distance queries, please refer to the distance queries introduction.
Distance lookups take the following form:
<field>__<distance lookup>=(<geometry/raster>, <distance value>[, 'spheroid'])
<field>__<distance lookup>=(<raster>, <band_index>, <distance value>[, 'spheroid'])
<field>__<band_index>__<distance lookup>=(<raster>, <band_index>, <distance value>[, 'spheroid'])
The value passed into a distance lookup is a tuple; the first two
values are mandatory, and are the geometry to calculate distances to,
and a distance value (either a number in units of the field, a
Distance object, or a query expression
<ref/models/expressions>). To pass a band index to the lookup, use a 3-tuple
where the second entry is the band index.
On every distance lookup except dwithin, an optional element,
'spheroid', may be included to use the more accurate spheroid distance
calculation functions on fields with a geodetic coordinate system.
On PostgreSQL, the 'spheroid' option uses ST_DistanceSpheroid instead of
ST_DistanceSphere. The
simpler ST_Distance function is
used with projected coordinate systems. Rasters are converted to geometries for
spheroid based lookups.
distance_gtLink para este cabeçalho
Returns models where the distance to the geometry field from the lookup geometry is greater than the given distance value.
Exemplo
Zipcode.objects.filter(poly__distance_gt=(geom, D(m=5)))
Backend |
SQL Equivalent |
|---|---|
PostGIS |
|
Oracle |
|
SpatiaLite |
|
distance_gteLink para este cabeçalho
Returns models where the distance to the geometry field from the lookup geometry is greater than or equal to the given distance value.
Exemplo
Zipcode.objects.filter(poly__distance_gte=(geom, D(m=5)))
Backend |
SQL Equivalent |
|---|---|
PostGIS |
|
Oracle |
|
SpatiaLite |
|
distance_ltLink para este cabeçalho
Returns models where the distance to the geometry field from the lookup geometry is less than the given distance value.
Exemplo
Zipcode.objects.filter(poly__distance_lt=(geom, D(m=5)))
Backend |
SQL Equivalent |
|---|---|
PostGIS |
|
Oracle |
|
SpatiaLite |
|
distance_lteLink para este cabeçalho
Returns models where the distance to the geometry field from the lookup geometry is less than or equal to the given distance value.
Exemplo
Zipcode.objects.filter(poly__distance_lte=(geom, D(m=5)))
Backend |
SQL Equivalent |
|---|---|
PostGIS |
|
Oracle |
|
SpatiaLite |
|
dwithinLink para este cabeçalho
Returns models where the distance to the geometry field from the lookup
geometry are within the given distance from one another. Note that you can only
provide Distance objects if the targeted
geometries are in a projected system. For geographic geometries, you should use
units of the geometry field (e.g. degrees for WGS84) .
Exemplo
Zipcode.objects.filter(poly__dwithin=(geom, D(m=5)))
Backend |
SQL Equivalent |
|---|---|
PostGIS |
|
Oracle |
|
SpatiaLite |
|
GeoQuerySet MethodsLink para este cabeçalho
GeoQuerySet methods specify that a spatial operation be performed
on each spatial operation on each geographic
field in the queryset and store its output in a new attribute on the model
(which is generally the name of the GeoQuerySet method).
There are also aggregate GeoQuerySet methods which return a single value
instead of a queryset. This section will describe the API and availability
of every GeoQuerySet method available in GeoDjango.
With a few exceptions, the following keyword arguments may be used with all
GeoQuerySet methods:
Keyword Argument |
Descrição |
|---|---|
|
By default, On PostGIS, the |
|
By default, This keyword is required if
a method name clashes with an existing
|
MeasurementLink para este cabeçalho
Availability: PostGIS, Oracle, SpatiaLite
areaLink para este cabeçalho
- GeoQuerySet.area(**kwargs)Link para esta definição
Returns the area of the geographic field in an area attribute on
each element of this GeoQuerySet.
distanceLink para este cabeçalho
- GeoQuerySet.distance(geom, **kwargs)Link para esta definição
This method takes a geometry as a parameter, and attaches a distance
attribute to every model in the returned queryset that contains the
distance (as a Distance object) to the given geometry.
In the following example (taken from the GeoDjango distance tests),
the distance from the Tasmanian city of Hobart to every other
PointField in the AustraliaCity queryset is calculated:
>>> pnt = AustraliaCity.objects.get(name='Hobart').point
>>> for city in AustraliaCity.objects.distance(pnt): print(city.name, city.distance)
Wollongong 990071.220408 m
Shellharbour 972804.613941 m
Thirroul 1002334.36351 m
Mittagong 975691.632637 m
Batemans Bay 834342.185561 m
Canberra 598140.268959 m
Melbourne 575337.765042 m
Sydney 1056978.87363 m
Hobart 0.0 m
Adelaide 1162031.83522 m
Hillsdale 1049200.46122 m
lengthLink para este cabeçalho
- GeoQuerySet.length(**kwargs)Link para esta definição
Returns the length of the geometry field in a length attribute
(a Distance object) on each model in
the queryset.
perimeterLink para este cabeçalho
- GeoQuerySet.perimeter(**kwargs)Link para esta definição
Returns the perimeter of the geometry field in a perimeter attribute
(a Distance object) on each model in
the queryset.
Geometry RelationshipsLink para este cabeçalho
The following methods take no arguments, and attach geometry objects
each element of the GeoQuerySet that is the result of relationship
function evaluated on the geometry field.
centroidLink para este cabeçalho
- GeoQuerySet.centroid(**kwargs)Link para esta definição
Availability: PostGIS, Oracle, SpatiaLite
Returns the centroid value for the geographic field in a centroid
attribute on each element of the GeoQuerySet.
envelopeLink para este cabeçalho
- GeoQuerySet.envelope(**kwargs)Link para esta definição
Availability: PostGIS, SpatiaLite
Returns a geometry representing the bounding box of the geometry field in
an envelope attribute on each element of the GeoQuerySet.
point_on_surfaceLink para este cabeçalho
- GeoQuerySet.point_on_surface(**kwargs)Link para esta definição
Availability: PostGIS, Oracle, SpatiaLite
Returns a Point geometry guaranteed to lie on the surface of the
geometry field in a point_on_surface attribute on each element
of the queryset; otherwise sets with None.
Geometry EditorsLink para este cabeçalho
force_rhrLink para este cabeçalho
- GeoQuerySet.force_rhr(**kwargs)Link para esta definição
Availability: PostGIS
Returns a modified version of the polygon/multipolygon in which all
of the vertices follow the Right-Hand-Rule, and attaches as a
force_rhr attribute on each element of the queryset.
reverse_geomLink para este cabeçalho
- GeoQuerySet.reverse_geom(**kwargs)Link para esta definição
Availability: PostGIS, Oracle
Reverse the coordinate order of the geometry field, and attaches as a
reverse attribute on each element of the queryset.
scaleLink para este cabeçalho
- GeoQuerySet.scale(x, y, z=0.0, **kwargs)Link para esta definição
Availability: PostGIS, SpatiaLite
snap_to_gridLink para este cabeçalho
- GeoQuerySet.snap_to_grid(*args, **kwargs)Link para esta definição
Snap all points of the input geometry to the grid. How the geometry is snapped to the grid depends on how many numeric (either float, integer, or long) arguments are given.
Number of Arguments |
Descrição |
|---|---|
1 |
A single size to snap bot the X and Y grids to. |
2 |
X and Y sizes to snap the grid to. |
4 |
X, Y sizes and the corresponding X, Y origins. |
transformLink para este cabeçalho
- GeoQuerySet.transform(srid=4326, **kwargs)Link para esta definição
Availability: PostGIS, Oracle, SpatiaLite
The transform method transforms the geometry field of a model to the spatial
reference system specified by the srid parameter. If no srid is given,
then 4326 (WGS84) is used by default.
Exemplo
>>> qs = Zipcode.objects.all().transform() # Transforms to WGS84
>>> qs = Zipcode.objects.all().transform(32140) # Transforming to "NAD83 / Texas South Central"
>>> print(qs[0].poly.srid)
32140
>>> print(qs[0].poly)
POLYGON ((234055.1698884720099159 4937796.9232223574072123 ...
translateLink para este cabeçalho
- GeoQuerySet.translate(x, y, z=0.0, **kwargs)Link para esta definição
Availability: PostGIS, SpatiaLite
Translates the geometry field to a new location using the given numeric parameters as offsets.
Geometry OperationsLink para este cabeçalho
Availability: PostGIS, Oracle, SpatiaLite
The following methods all take a geometry as a parameter and attach a geometry
to each element of the GeoQuerySet that is the result of the operation.
differenceLink para este cabeçalho
- GeoQuerySet.difference(geom)Link para esta definição
Returns the spatial difference of the geographic field with the given
geometry in a difference attribute on each element of the
GeoQuerySet.
intersectionLink para este cabeçalho
- GeoQuerySet.intersection(geom)Link para esta definição
Returns the spatial intersection of the geographic field with the
given geometry in an intersection attribute on each element of the
GeoQuerySet.
sym_differenceLink para este cabeçalho
- GeoQuerySet.sym_difference(geom)Link para esta definição
Returns the symmetric difference of the geographic field with the
given geometry in a sym_difference attribute on each element of the
GeoQuerySet.
unionLink para este cabeçalho
- GeoQuerySet.union(geom)Link para esta definição
Returns the union of the geographic field with the given
geometry in an union attribute on each element of the
GeoQuerySet.
Geometry OutputLink para este cabeçalho
The following GeoQuerySet methods will return an attribute that has the value
of the geometry field in each model converted to the requested output format.
geohashLink para este cabeçalho
- GeoQuerySet.geohash(precision=20, **kwargs)Link para esta definição
Attaches a geohash attribute to every model the queryset
containing the GeoHash representation of the geometry.
geojsonLink para este cabeçalho
- GeoQuerySet.geojson(**kwargs)Link para esta definição
Availability: PostGIS, SpatiaLite
Attaches a geojson attribute to every model in the queryset that contains the
GeoJSON representation of the geometry.
Keyword Argument |
Descrição |
|---|---|
|
It may be used to specify the number of significant digits for the coordinates in the GeoJSON representation – the default value is 8. |
|
Set this to |
|
Set this to |
gmlLink para este cabeçalho
- GeoQuerySet.gml(**kwargs)Link para esta definição
Availability: PostGIS, Oracle, SpatiaLite
Attaches a gml attribute to every model in the queryset that contains the
Geographic Markup Language (GML) representation of the geometry.
Exemplo
>>> qs = Zipcode.objects.all().gml()
>>> print(qs[0].gml)
<gml:Polygon srsName="EPSG:4326"><gml:OuterBoundaryIs>-147.78711,70.245363 ... -147.78711,70.245363</gml:OuterBoundaryIs></gml:Polygon>
Keyword Argument |
Descrição |
|---|---|
|
This keyword is for PostGIS only. It may be used to specify the number of significant digits for the coordinates in the GML representation – the default value is 8. |
|
This keyword is for PostGIS only. It may be used to specify the GML version used, and may only be values of 2 or 3. The default value is 2. |
kmlLink para este cabeçalho
- GeoQuerySet.kml(**kwargs)Link para esta definição
Availability: PostGIS, SpatiaLite
Attaches a kml attribute to every model in the queryset that contains the
Keyhole Markup Language (KML) representation of the geometry fields. It
should be noted that the contents of the KML are transformed to WGS84 if
necessary.
Exemplo
>>> qs = Zipcode.objects.all().kml()
>>> print(qs[0].kml)
<Polygon><outerBoundaryIs><LinearRing><coordinates>-103.04135,36.217596,0 ... -103.04135,36.217596,0</coordinates></LinearRing></outerBoundaryIs></Polygon>
Keyword Argument |
Descrição |
|---|---|
|
This keyword may be used to specify the number of significant digits for the coordinates in the KML representation – the default value is 8. |
svgLink para este cabeçalho
- GeoQuerySet.svg(**kwargs)Link para esta definição
Availability: PostGIS, SpatiaLite
Attaches a svg attribute to every model in the queryset that contains
the Scalable Vector Graphics (SVG) path data of the geometry fields.
Keyword Argument |
Descrição |
|---|---|
|
If set to |
|
This keyword may be used to specify the number of significant digits for the coordinates in the SVG representation – the default value is 8. |
VariadosLink para este cabeçalho
mem_sizeLink para este cabeçalho
- GeoQuerySet.mem_size(**kwargs)Link para esta definição
Availability: PostGIS
Returns the memory size (number of bytes) that the geometry field takes
in a mem_size attribute on each element of the GeoQuerySet.
num_geomLink para este cabeçalho
- GeoQuerySet.num_geom(**kwargs)Link para esta definição
Availability: PostGIS, Oracle, SpatiaLite
Returns the number of geometries in a num_geom attribute on
each element of the GeoQuerySet if the geometry field is a
collection (e.g., a GEOMETRYCOLLECTION or MULTI* field);
otherwise sets with None.
num_pointsLink para este cabeçalho
- GeoQuerySet.num_points(**kwargs)Link para esta definição
Availability: PostGIS, Oracle, SpatiaLite
Returns the number of points in the first linestring in the
geometry field in a num_points attribute on each element of
the GeoQuerySet; otherwise sets with None.
Funções de AgregaçãoLink para este cabeçalho
Django provides some GIS-specific aggregate functions. For details on how to use these aggregate functions, see the topic guide on aggregation.
Keyword Argument |
Descrição |
|---|---|
|
This keyword is for Oracle only. It is for the
tolerance value used by the |
Exemplo
>>> from django.contrib.gis.db.models import Extent, Union
>>> WorldBorder.objects.aggregate(Extent('mpoly'), Union('mpoly'))
CollectLink para este cabeçalho
- class Collect(geo_field)Link para esta definição
Availability: PostGIS, SpatiaLite
Returns a GEOMETRYCOLLECTION or a MULTI geometry object from the geometry
column. This is analogous to a simplified version of the Union
aggregate, except it can be several orders of magnitude faster than performing
a union because it simply rolls up geometries into a collection or multi object,
not caring about dissolving boundaries.
ExtentLink para este cabeçalho
- class Extent(geo_field)Link para esta definição
Availability: PostGIS, Oracle, SpatiaLite
Returns the extent of all geo_field in the QuerySet as a four-tuple,
comprising the lower left coordinate and the upper right coordinate.
Exemplo
>>> qs = City.objects.filter(name__in=('Houston', 'Dallas')).aggregate(Extent('poly'))
>>> print(qs['poly__extent'])
(-96.8016128540039, 29.7633724212646, -95.3631439208984, 32.782058715820)
Extent3DLink para este cabeçalho
- class Extent3D(geo_field)Link para esta definição
Availability: PostGIS
Returns the 3D extent of all geo_field in the QuerySet as a six-tuple,
comprising the lower left coordinate and upper right coordinate (each with x, y,
and z coordinates).
Exemplo
>>> qs = City.objects.filter(name__in=('Houston', 'Dallas')).aggregate(Extent3D('poly'))
>>> print(qs['poly__extent3d'])
(-96.8016128540039, 29.7633724212646, 0, -95.3631439208984, 32.782058715820, 0)
MakeLineLink para este cabeçalho
- class MakeLine(geo_field)Link para esta definição
Availability: PostGIS, SpatiaLite
Returns a LineString constructed from the point field geometries in the
QuerySet. Currently, ordering the queryset has no effect.
Exemplo
>>> qs = City.objects.filter(name__in=('Houston', 'Dallas')).aggregate(MakeLine('poly'))
>>> print(qs['poly__makeline'])
LINESTRING (-95.3631510000000020 29.7633739999999989, -96.8016109999999941 32.7820570000000018)
UnionLink para este cabeçalho
- class Union(geo_field)Link para esta definição
Availability: PostGIS, Oracle, SpatiaLite
This method returns a GEOSGeometry object
comprising the union of every geometry in the queryset. Please note that use of
Union is processor intensive and may take a significant amount of time on
large querysets.
Exemplo
>>> u = Zipcode.objects.aggregate(Union(poly)) # This may take a long time.
>>> u = Zipcode.objects.filter(poly__within=bbox).aggregate(Union(poly)) # A more sensible approach.
Notas de rodapé