functions.txt 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535
  1. =============================
  2. Geographic Database Functions
  3. =============================
  4. .. module:: django.contrib.gis.db.models.functions
  5. :synopsis: Geographic Database Functions
  6. The functions documented on this page allow users to access geographic database
  7. functions to be used in annotations, aggregations, or filters in Django.
  8. Example::
  9. >>> from django.contrib.gis.db.models.functions import Length
  10. >>> Track.objects.annotate(length=Length('line')).filter(length__gt=100)
  11. Not all backends support all functions, so refer to the documentation of each
  12. function to see if your database backend supports the function you want to use.
  13. If you call a geographic function on a backend that doesn't support it, you'll
  14. get a ``NotImplementedError`` exception.
  15. Function's summary:
  16. ================== ======================= ====================== =================== ================== =====================
  17. Measurement Relationships Operations Editors Output format Miscellaneous
  18. ================== ======================= ====================== =================== ================== =====================
  19. :class:`Area` :class:`BoundingCircle` :class:`Difference` :class:`ForceRHR` :class:`AsGeoJSON` :class:`IsValid`
  20. :class:`Distance` :class:`Centroid` :class:`Intersection` :class:`MakeValid` :class:`AsGML` :class:`MemSize`
  21. :class:`Length` :class:`Envelope` :class:`SymDifference` :class:`Reverse` :class:`AsKML` :class:`NumGeometries`
  22. :class:`Perimeter` :class:`PointOnSurface` :class:`Union` :class:`Scale` :class:`AsSVG` :class:`NumPoints`
  23. .. :class:`SnapToGrid` :class:`GeoHash`
  24. .. :class:`Transform`
  25. .. :class:`Translate`
  26. ================== ======================= ====================== =================== ================== =====================
  27. ``Area``
  28. ========
  29. .. class:: Area(expression, **extra)
  30. *Availability*: MySQL, Oracle,
  31. `PostGIS <https://postgis.net/docs/ST_Area.html>`__, SpatiaLite
  32. Accepts a single geographic field or expression and returns the area of the
  33. field as an :class:`~django.contrib.gis.measure.Area` measure.
  34. MySQL and SpatiaLite without LWGEOM don't support area calculations on
  35. geographic SRSes.
  36. .. versionchanged:: 1.11
  37. In older versions, a raw value was returned on MySQL when used on
  38. projected SRS.
  39. ``AsGeoJSON``
  40. =============
  41. .. class:: AsGeoJSON(expression, bbox=False, crs=False, precision=8, **extra)
  42. *Availability*: MySQL (≥ 5.7.5), `PostGIS
  43. <https://postgis.net/docs/ST_AsGeoJSON.html>`__, SpatiaLite
  44. Accepts a single geographic field or expression and returns a `GeoJSON
  45. <http://geojson.org/>`_ representation of the geometry. Note that the result is
  46. not a complete GeoJSON structure but only the ``geometry`` key content of a
  47. GeoJSON structure. See also :doc:`/ref/contrib/gis/serializers`.
  48. Example::
  49. >>> City.objects.annotate(json=AsGeoJSON('point')).get(name='Chicago').json
  50. {"type":"Point","coordinates":[-87.65018,41.85039]}
  51. ===================== =====================================================
  52. Keyword Argument Description
  53. ===================== =====================================================
  54. ``bbox`` Set this to ``True`` if you want the bounding box
  55. to be included in the returned GeoJSON.
  56. ``crs`` Set this to ``True`` if you want the coordinate
  57. reference system to be included in the returned
  58. GeoJSON. Ignored on MySQL.
  59. ``precision`` It may be used to specify the number of significant
  60. digits for the coordinates in the GeoJSON
  61. representation -- the default value is 8.
  62. ===================== =====================================================
  63. .. versionchanged:: 2.0
  64. MySQL support was added.
  65. ``AsGML``
  66. =========
  67. .. class:: AsGML(expression, version=2, precision=8, **extra)
  68. *Availability*: Oracle, `PostGIS <https://postgis.net/docs/ST_AsGML.html>`__,
  69. SpatiaLite
  70. Accepts a single geographic field or expression and returns a `Geographic Markup
  71. Language (GML)`__ representation of the geometry.
  72. Example::
  73. >>> qs = Zipcode.objects.annotate(gml=AsGML('poly'))
  74. >>> print(qs[0].gml)
  75. <gml:Polygon srsName="EPSG:4326"><gml:OuterBoundaryIs>-147.78711,70.245363 ...
  76. -147.78711,70.245363</gml:OuterBoundaryIs></gml:Polygon>
  77. ===================== =====================================================
  78. Keyword Argument Description
  79. ===================== =====================================================
  80. ``precision`` Specifies the number of significant digits for the
  81. coordinates in the GML representation -- the default
  82. value is 8. Ignored on Oracle.
  83. ``version`` Specifies the GML version to use: 2 (default) or 3.
  84. ===================== =====================================================
  85. __ https://en.wikipedia.org/wiki/Geography_Markup_Language
  86. .. versionchanged:: 1.11
  87. Oracle support was added.
  88. ``AsKML``
  89. =========
  90. .. class:: AsKML(expression, precision=8, **extra)
  91. *Availability*: `PostGIS <https://postgis.net/docs/ST_AsKML.html>`__, SpatiaLite
  92. Accepts a single geographic field or expression and returns a `Keyhole Markup
  93. Language (KML)`__ representation of the geometry.
  94. Example::
  95. >>> qs = Zipcode.objects.annotate(kml=AsKML('poly'))
  96. >>> print(qs[0].kml)
  97. <Polygon><outerBoundaryIs><LinearRing><coordinates>-103.04135,36.217596,0 ...
  98. -103.04135,36.217596,0</coordinates></LinearRing></outerBoundaryIs></Polygon>
  99. ===================== =====================================================
  100. Keyword Argument Description
  101. ===================== =====================================================
  102. ``precision`` This keyword may be used to specify the number of
  103. significant digits for the coordinates in the KML
  104. representation -- the default value is 8.
  105. ===================== =====================================================
  106. __ https://developers.google.com/kml/documentation/
  107. ``AsSVG``
  108. =========
  109. .. class:: AsSVG(expression, relative=False, precision=8, **extra)
  110. *Availability*: `PostGIS <https://postgis.net/docs/ST_AsSVG.html>`__, SpatiaLite
  111. Accepts a single geographic field or expression and returns a `Scalable Vector
  112. Graphics (SVG)`__ representation of the geometry.
  113. ===================== =====================================================
  114. Keyword Argument Description
  115. ===================== =====================================================
  116. ``relative`` If set to ``True``, the path data will be implemented
  117. in terms of relative moves. Defaults to ``False``,
  118. meaning that absolute moves are used instead.
  119. ``precision`` This keyword may be used to specify the number of
  120. significant digits for the coordinates in the SVG
  121. representation -- the default value is 8.
  122. ===================== =====================================================
  123. __ http://www.w3.org/Graphics/SVG/
  124. ``BoundingCircle``
  125. ==================
  126. .. class:: BoundingCircle(expression, num_seg=48, **extra)
  127. *Availability*: `PostGIS <https://postgis.net/docs/ST_MinimumBoundingCircle.html>`__,
  128. `Oracle <https://docs.oracle.com/database/121/SPATL/GUID-82A61626-BB64-4793-B53D-A0DBEC91831A.htm#SPATL1554>`_
  129. Accepts a single geographic field or expression and returns the smallest circle
  130. polygon that can fully contain the geometry.
  131. The ``num_seg`` parameter is used only on PostGIS.
  132. .. versionchanged:: 1.11
  133. Oracle support was added.
  134. ``Centroid``
  135. ============
  136. .. class:: Centroid(expression, **extra)
  137. *Availability*: MySQL, `PostGIS <https://postgis.net/docs/ST_Centroid.html>`__,
  138. Oracle, SpatiaLite
  139. Accepts a single geographic field or expression and returns the ``centroid``
  140. value of the geometry.
  141. ``Difference``
  142. ==============
  143. .. class:: Difference(expr1, expr2, **extra)
  144. *Availability*: MySQL (≥ 5.6.1), `PostGIS
  145. <https://postgis.net/docs/ST_Difference.html>`__, Oracle, SpatiaLite
  146. Accepts two geographic fields or expressions and returns the geometric
  147. difference, that is the part of geometry A that does not intersect with
  148. geometry B.
  149. ``Distance``
  150. ============
  151. .. class:: Distance(expr1, expr2, spheroid=None, **extra)
  152. *Availability*: MySQL (≥ 5.6.1), `PostGIS
  153. <https://postgis.net/docs/ST_Distance.html>`__, Oracle, SpatiaLite
  154. Accepts two geographic fields or expressions and returns the distance between
  155. them, as a :class:`~django.contrib.gis.measure.Distance` object. On MySQL, a raw
  156. float value is returned when the coordinates are geodetic.
  157. On backends that support distance calculation on geodetic coordinates, the
  158. proper backend function is automatically chosen depending on the SRID value of
  159. the geometries (e.g. `ST_DistanceSphere
  160. <https://postgis.net/docs/ST_DistanceSphere.html>`__ on PostGIS).
  161. When distances are calculated with geodetic (angular) coordinates, as is the
  162. case with the default WGS84 (4326) SRID, you can set the ``spheroid`` keyword
  163. argument to decide if the calculation should be based on a simple sphere (less
  164. accurate, less resource-intensive) or on a spheroid (more accurate, more
  165. resource-intensive).
  166. In the following example, the distance from the city of Hobart to every other
  167. :class:`~django.contrib.gis.db.models.PointField` in the ``AustraliaCity``
  168. queryset is calculated::
  169. >>> from django.contrib.gis.db.models.functions import Distance
  170. >>> pnt = AustraliaCity.objects.get(name='Hobart').point
  171. >>> for city in AustraliaCity.objects.annotate(distance=Distance('point', pnt)):
  172. ... print(city.name, city.distance)
  173. Wollongong 990071.220408 m
  174. Shellharbour 972804.613941 m
  175. Thirroul 1002334.36351 m
  176. ...
  177. .. note::
  178. Because the ``distance`` attribute is a
  179. :class:`~django.contrib.gis.measure.Distance` object, you can easily express
  180. the value in the units of your choice. For example, ``city.distance.mi`` is
  181. the distance value in miles and ``city.distance.km`` is the distance value
  182. in kilometers. See :doc:`measure` for usage details and the list of
  183. :ref:`supported_units`.
  184. .. versionchanged:: 1.11
  185. In older versions, a raw value was returned on MySQL when used on
  186. projected SRS.
  187. ``Envelope``
  188. ============
  189. .. class:: Envelope(expression, **extra)
  190. *Availability*: MySQL, `PostGIS <https://postgis.net/docs/ST_Envelope.html>`__,
  191. SpatiaLite
  192. Accepts a single geographic field or expression and returns the geometry
  193. representing the bounding box of the geometry.
  194. ``ForceRHR``
  195. ============
  196. .. class:: ForceRHR(expression, **extra)
  197. *Availability*: `PostGIS <https://postgis.net/docs/ST_ForceRHR.html>`__
  198. Accepts a single geographic field or expression and returns a modified version
  199. of the polygon/multipolygon in which all of the vertices follow the
  200. right-hand rule.
  201. ``GeoHash``
  202. ===========
  203. .. class:: GeoHash(expression, precision=None, **extra)
  204. *Availability*: MySQL (≥ 5.7.5), `PostGIS
  205. <https://postgis.net/docs/ST_GeoHash.html>`__, SpatiaLite (LWGEOM)
  206. Accepts a single geographic field or expression and returns a `GeoHash`__
  207. representation of the geometry.
  208. The ``precision`` keyword argument controls the number of characters in the
  209. result.
  210. .. versionchanged:: 2.0
  211. MySQL support was added.
  212. __ https://en.wikipedia.org/wiki/Geohash
  213. ``Intersection``
  214. ================
  215. .. class:: Intersection(expr1, expr2, **extra)
  216. *Availability*: MySQL (≥ 5.6.1), `PostGIS
  217. <https://postgis.net/docs/ST_Intersection.html>`__, Oracle, SpatiaLite
  218. Accepts two geographic fields or expressions and returns the geometric
  219. intersection between them.
  220. ``IsValid``
  221. ===========
  222. .. class:: IsValid(expr)
  223. *Availability*: MySQL (≥ 5.7.5), `PostGIS
  224. <https://postgis.net/docs/ST_IsValid.html>`__, Oracle, SpatiaLite (LWGEOM)
  225. Accepts a geographic field or expression and tests if the value is well formed.
  226. Returns ``True`` if its value is a valid geometry and ``False`` otherwise.
  227. .. versionchanged:: 1.11
  228. SpatiaLite and Oracle support was added.
  229. .. versionchanged:: 2.0
  230. MySQL support was added.
  231. ``Length``
  232. ==========
  233. .. class:: Length(expression, spheroid=True, **extra)
  234. *Availability*: MySQL, Oracle, `PostGIS
  235. <https://postgis.net/docs/ST_Length.html>`__, SpatiaLite
  236. Accepts a single geographic linestring or multilinestring field or expression
  237. and returns its length as an :class:`~django.contrib.gis.measure.Distance`
  238. measure. On MySQL, a raw float value is returned when the coordinates
  239. are geodetic.
  240. On PostGIS and SpatiaLite, when the coordinates are geodetic (angular), you can
  241. specify if the calculation should be based on a simple sphere (less
  242. accurate, less resource-intensive) or on a spheroid (more accurate, more
  243. resource-intensive) with the ``spheroid`` keyword argument.
  244. .. versionchanged:: 1.11
  245. In older versions, a raw value was returned on MySQL when used on
  246. projected SRS.
  247. ``MakeValid``
  248. =============
  249. .. class:: MakeValid(expr)
  250. *Availability*: `PostGIS <https://postgis.net/docs/ST_MakeValid.html>`__,
  251. SpatiaLite (LWGEOM)
  252. Accepts a geographic field or expression and attempts to convert the value into
  253. a valid geometry without losing any of the input vertices. Geometries that are
  254. already valid are returned without changes. Simple polygons might become a
  255. multipolygon and the result might be of lower dimension than the input.
  256. .. versionchanged:: 1.11
  257. SpatiaLite support was added.
  258. ``MemSize``
  259. ===========
  260. .. class:: MemSize(expression, **extra)
  261. *Availability*: `PostGIS <https://postgis.net/docs/ST_MemSize.html>`__
  262. Accepts a single geographic field or expression and returns the memory size
  263. (number of bytes) that the geometry field takes.
  264. ``NumGeometries``
  265. =================
  266. .. class:: NumGeometries(expression, **extra)
  267. *Availability*: MySQL, `PostGIS
  268. <https://postgis.net/docs/ST_NumGeometries.html>`__, Oracle, SpatiaLite
  269. Accepts a single geographic field or expression and returns the number of
  270. geometries if the geometry field is a collection (e.g., a ``GEOMETRYCOLLECTION``
  271. or ``MULTI*`` field). Returns 1 for single geometries.
  272. On MySQL, returns ``None`` for single geometries.
  273. ``NumPoints``
  274. =============
  275. .. class:: NumPoints(expression, **extra)
  276. *Availability*: MySQL, `PostGIS <https://postgis.net/docs/ST_NPoints.html>`__,
  277. Oracle, SpatiaLite
  278. Accepts a single geographic field or expression and returns the number of points
  279. in a geometry.
  280. On MySQL, returns ``None`` for any non-``LINESTRING`` geometry.
  281. .. versionchanged:: 1.11
  282. SpatiaLite support for non-``LINESTRING`` geometries was added.
  283. ``Perimeter``
  284. =============
  285. .. class:: Perimeter(expression, **extra)
  286. *Availability*: `PostGIS <https://postgis.net/docs/ST_Perimeter.html>`__,
  287. Oracle, SpatiaLite
  288. Accepts a single geographic field or expression and returns the perimeter of the
  289. geometry field as a :class:`~django.contrib.gis.measure.Distance` object.
  290. ``PointOnSurface``
  291. ==================
  292. .. class:: PointOnSurface(expression, **extra)
  293. *Availability*: `PostGIS <https://postgis.net/docs/ST_PointOnSurface.html>`__,
  294. Oracle, SpatiaLite
  295. Accepts a single geographic field or expression and returns a ``Point`` geometry
  296. guaranteed to lie on the surface of the field; otherwise returns ``None``.
  297. ``Reverse``
  298. ===========
  299. .. class:: Reverse(expression, **extra)
  300. *Availability*: `PostGIS <https://postgis.net/docs/ST_Reverse.html>`__, Oracle,
  301. SpatiaLite
  302. Accepts a single geographic field or expression and returns a geometry with
  303. reversed coordinates.
  304. ``Scale``
  305. =========
  306. .. class:: Scale(expression, x, y, z=0.0, **extra)
  307. *Availability*: `PostGIS <https://postgis.net/docs/ST_Scale.html>`__, SpatiaLite
  308. Accepts a single geographic field or expression and returns a geometry with
  309. scaled coordinates by multiplying them with the ``x``, ``y``, and optionally
  310. ``z`` parameters.
  311. ``SnapToGrid``
  312. ==============
  313. .. class:: SnapToGrid(expression, *args, **extra)
  314. *Availability*: `PostGIS <https://postgis.net/docs/ST_SnapToGrid.html>`__,
  315. SpatiaLite
  316. Accepts a single geographic field or expression and returns a geometry with all
  317. points snapped to the given grid. How the geometry is snapped to the grid
  318. depends on how many numeric (either float, integer, or long) arguments are
  319. given.
  320. =================== =====================================================
  321. Number of Arguments Description
  322. =================== =====================================================
  323. 1 A single size to snap both the X and Y grids to.
  324. 2 X and Y sizes to snap the grid to.
  325. 4 X, Y sizes and the corresponding X, Y origins.
  326. =================== =====================================================
  327. ``SymDifference``
  328. =================
  329. .. class:: SymDifference(expr1, expr2, **extra)
  330. *Availability*: MySQL (≥ 5.6.1), `PostGIS
  331. <https://postgis.net/docs/ST_SymDifference.html>`__, Oracle, SpatiaLite
  332. Accepts two geographic fields or expressions and returns the geometric
  333. symmetric difference (union without the intersection) between the given
  334. parameters.
  335. ``Transform``
  336. =============
  337. .. class:: Transform(expression, srid, **extra)
  338. *Availability*: `PostGIS <https://postgis.net/docs/ST_Transform.html>`__,
  339. Oracle, SpatiaLite
  340. Accepts a geographic field or expression and a SRID integer code, and returns
  341. the transformed geometry to the spatial reference system specified by the
  342. ``srid`` parameter.
  343. .. note::
  344. What spatial reference system an integer SRID corresponds to may depend on
  345. the spatial database used. In other words, the SRID numbers used for Oracle
  346. are not necessarily the same as those used by PostGIS.
  347. ``Translate``
  348. =============
  349. .. class:: Translate(expression, x, y, z=0.0, **extra)
  350. *Availability*: `PostGIS <https://postgis.net/docs/ST_Translate.html>`__,
  351. SpatiaLite
  352. Accepts a single geographic field or expression and returns a geometry with
  353. its coordinates offset by the ``x``, ``y``, and optionally ``z`` numeric
  354. parameters.
  355. ``Union``
  356. =========
  357. .. class:: Union(expr1, expr2, **extra)
  358. *Availability*: MySQL (≥ 5.6.1), `PostGIS
  359. <https://postgis.net/docs/ST_Union.html>`__, Oracle, SpatiaLite
  360. Accepts two geographic fields or expressions and returns the union of both
  361. geometries.