functions.txt 15 KB

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