geoquerysets.txt 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889
  1. ==========================
  2. GIS QuerySet API Reference
  3. ==========================
  4. .. currentmodule:: django.contrib.gis.db.models
  5. .. _spatial-lookups:
  6. Spatial Lookups
  7. ===============
  8. The spatial lookups in this section are available for :class:`GeometryField`
  9. and :class:`RasterField`.
  10. For an introduction, see the :ref:`spatial lookups introduction
  11. <spatial-lookups-intro>`. For an overview of what lookups are
  12. compatible with a particular spatial backend, refer to the
  13. :ref:`spatial lookup compatibility table <spatial-lookup-compatibility>`.
  14. Lookups with rasters
  15. --------------------
  16. All examples in the reference below are given for geometry fields and inputs,
  17. but the lookups can be used the same way with rasters on both sides. Whenever
  18. a lookup doesn't support raster input, the input is automatically
  19. converted to a geometry where necessary using the `ST_Polygon
  20. <https://postgis.net/docs/RT_ST_Polygon.html>`_ function. See also the
  21. :ref:`introduction to raster lookups <spatial-lookup-raster>`.
  22. The database operators used by the lookups can be divided into three categories:
  23. - Native raster support ``N``: the operator accepts rasters natively on both
  24. sides of the lookup, and raster input can be mixed with geometry inputs.
  25. - Bilateral raster support ``B``: the operator supports rasters only if both
  26. sides of the lookup receive raster inputs. Raster data is automatically
  27. converted to geometries for mixed lookups.
  28. - Geometry conversion support ``C``. The lookup does not have native raster
  29. support, all raster data is automatically converted to geometries.
  30. The examples below show the SQL equivalent for the lookups in the different
  31. types of raster support. The same pattern applies to all spatial lookups.
  32. ==== ============================== =======================================================
  33. Case Lookup SQL Equivalent
  34. ==== ============================== =======================================================
  35. N, B ``rast__contains=rst`` ``ST_Contains(rast, rst)``
  36. N, B ``rast__1__contains=(rst, 2)`` ``ST_Contains(rast, 1, rst, 2)``
  37. B, C ``rast__contains=geom`` ``ST_Contains(ST_Polygon(rast), geom)``
  38. B, C ``rast__1__contains=geom`` ``ST_Contains(ST_Polygon(rast, 1), geom)``
  39. B, C ``poly__contains=rst`` ``ST_Contains(poly, ST_Polygon(rst))``
  40. B, C ``poly__contains=(rst, 1)`` ``ST_Contains(poly, ST_Polygon(rst, 1))``
  41. C ``rast__crosses=rst`` ``ST_Crosses(ST_Polygon(rast), ST_Polygon(rst))``
  42. C ``rast__1__crosses=(rst, 2)`` ``ST_Crosses(ST_Polygon(rast, 1), ST_Polygon(rst, 2))``
  43. C ``rast__crosses=geom`` ``ST_Crosses(ST_Polygon(rast), geom)``
  44. C ``poly__crosses=rst`` ``ST_Crosses(poly, ST_Polygon(rst))``
  45. ==== ============================== =======================================================
  46. Spatial lookups with rasters are only supported for PostGIS backends
  47. (denominated as PGRaster in this section).
  48. .. fieldlookup:: bbcontains
  49. ``bbcontains``
  50. --------------
  51. *Availability*: `PostGIS <https://postgis.net/docs/ST_Geometry_Contain.html>`__,
  52. MySQL, SpatiaLite, PGRaster (Native)
  53. Tests if the geometry or raster field's bounding box completely contains the
  54. lookup geometry's bounding box.
  55. Example::
  56. Zipcode.objects.filter(poly__bbcontains=geom)
  57. ========== ==========================
  58. Backend SQL Equivalent
  59. ========== ==========================
  60. PostGIS ``poly ~ geom``
  61. MySQL ``MBRContains(poly, geom)``
  62. SpatiaLite ``MbrContains(poly, geom)``
  63. ========== ==========================
  64. .. fieldlookup:: bboverlaps
  65. ``bboverlaps``
  66. --------------
  67. *Availability*: `PostGIS <https://postgis.net/docs/geometry_overlaps.html>`__,
  68. MySQL, SpatiaLite, PGRaster (Native)
  69. Tests if the geometry field's bounding box overlaps the lookup geometry's
  70. bounding box.
  71. Example::
  72. Zipcode.objects.filter(poly__bboverlaps=geom)
  73. ========== ==========================
  74. Backend SQL Equivalent
  75. ========== ==========================
  76. PostGIS ``poly && geom``
  77. MySQL ``MBROverlaps(poly, geom)``
  78. SpatiaLite ``MbrOverlaps(poly, geom)``
  79. ========== ==========================
  80. .. fieldlookup:: contained
  81. ``contained``
  82. -------------
  83. *Availability*: `PostGIS <https://postgis.net/docs/ST_Geometry_Contained.html>`__,
  84. MySQL, SpatiaLite, PGRaster (Native)
  85. Tests if the geometry field's bounding box is completely contained by the
  86. lookup geometry's bounding box.
  87. Example::
  88. Zipcode.objects.filter(poly__contained=geom)
  89. ========== ==========================
  90. Backend SQL Equivalent
  91. ========== ==========================
  92. PostGIS ``poly @ geom``
  93. MySQL ``MBRWithin(poly, geom)``
  94. SpatiaLite ``MbrWithin(poly, geom)``
  95. ========== ==========================
  96. .. fieldlookup:: gis-contains
  97. ``contains``
  98. ------------
  99. *Availability*: `PostGIS <https://postgis.net/docs/ST_Contains.html>`__,
  100. Oracle, MySQL, SpatiaLite, PGRaster (Bilateral)
  101. Tests if the geometry field spatially contains the lookup geometry.
  102. Example::
  103. Zipcode.objects.filter(poly__contains=geom)
  104. ========== ============================
  105. Backend SQL Equivalent
  106. ========== ============================
  107. PostGIS ``ST_Contains(poly, geom)``
  108. Oracle ``SDO_CONTAINS(poly, geom)``
  109. MySQL ``MBRContains(poly, geom)``
  110. SpatiaLite ``Contains(poly, geom)``
  111. ========== ============================
  112. .. fieldlookup:: contains_properly
  113. ``contains_properly``
  114. ---------------------
  115. *Availability*: `PostGIS <https://postgis.net/docs/ST_ContainsProperly.html>`__,
  116. PGRaster (Bilateral)
  117. Returns true if the lookup geometry intersects the interior of the
  118. geometry field, but not the boundary (or exterior).
  119. Example::
  120. Zipcode.objects.filter(poly__contains_properly=geom)
  121. ========== ===================================
  122. Backend SQL Equivalent
  123. ========== ===================================
  124. PostGIS ``ST_ContainsProperly(poly, geom)``
  125. ========== ===================================
  126. .. fieldlookup:: coveredby
  127. ``coveredby``
  128. -------------
  129. *Availability*: `PostGIS <https://postgis.net/docs/ST_CoveredBy.html>`__,
  130. Oracle, PGRaster (Bilateral), SpatiaLite
  131. Tests if no point in the geometry field is outside the lookup geometry.
  132. [#fncovers]_
  133. Example::
  134. Zipcode.objects.filter(poly__coveredby=geom)
  135. .. versionchanged:: 2.2
  136. SpatiaLite support was added.
  137. ========== =============================
  138. Backend SQL Equivalent
  139. ========== =============================
  140. PostGIS ``ST_CoveredBy(poly, geom)``
  141. Oracle ``SDO_COVEREDBY(poly, geom)``
  142. SpatiaLite ``CoveredBy(poly, geom)``
  143. ========== =============================
  144. .. fieldlookup:: covers
  145. ``covers``
  146. ----------
  147. *Availability*: `PostGIS <https://postgis.net/docs/ST_Covers.html>`__,
  148. Oracle, PGRaster (Bilateral), SpatiaLite
  149. Tests if no point in the lookup geometry is outside the geometry field.
  150. [#fncovers]_
  151. Example::
  152. Zipcode.objects.filter(poly__covers=geom)
  153. .. versionchanged:: 2.2
  154. SpatiaLite support was added.
  155. ========== ==========================
  156. Backend SQL Equivalent
  157. ========== ==========================
  158. PostGIS ``ST_Covers(poly, geom)``
  159. Oracle ``SDO_COVERS(poly, geom)``
  160. SpatiaLite ``Covers(poly, geom)``
  161. ========== ==========================
  162. .. fieldlookup:: crosses
  163. ``crosses``
  164. -----------
  165. *Availability*: `PostGIS <https://postgis.net/docs/ST_Crosses.html>`__,
  166. SpatiaLite, PGRaster (Conversion)
  167. Tests if the geometry field spatially crosses the lookup geometry.
  168. Example::
  169. Zipcode.objects.filter(poly__crosses=geom)
  170. ========== ==========================
  171. Backend SQL Equivalent
  172. ========== ==========================
  173. PostGIS ``ST_Crosses(poly, geom)``
  174. SpatiaLite ``Crosses(poly, geom)``
  175. ========== ==========================
  176. .. fieldlookup:: disjoint
  177. ``disjoint``
  178. ------------
  179. *Availability*: `PostGIS <https://postgis.net/docs/ST_Disjoint.html>`__,
  180. Oracle, MySQL, SpatiaLite, PGRaster (Bilateral)
  181. Tests if the geometry field is spatially disjoint from the lookup geometry.
  182. Example::
  183. Zipcode.objects.filter(poly__disjoint=geom)
  184. ========== =================================================
  185. Backend SQL Equivalent
  186. ========== =================================================
  187. PostGIS ``ST_Disjoint(poly, geom)``
  188. Oracle ``SDO_GEOM.RELATE(poly, 'DISJOINT', geom, 0.05)``
  189. MySQL ``MBRDisjoint(poly, geom)``
  190. SpatiaLite ``Disjoint(poly, geom)``
  191. ========== =================================================
  192. .. fieldlookup:: equals
  193. ``equals``
  194. ----------
  195. *Availability*: `PostGIS <https://postgis.net/docs/ST_Equals.html>`__,
  196. Oracle, MySQL, SpatiaLite, PGRaster (Conversion)
  197. Tests if the geometry field is spatially equal to the lookup geometry.
  198. Example::
  199. Zipcode.objects.filter(poly__equals=geom)
  200. ========== =================================================
  201. Backend SQL Equivalent
  202. ========== =================================================
  203. PostGIS ``ST_Equals(poly, geom)``
  204. Oracle ``SDO_EQUAL(poly, geom)``
  205. MySQL ``MBREquals(poly, geom)``
  206. SpatiaLite ``Equals(poly, geom)``
  207. ========== =================================================
  208. .. fieldlookup:: exact
  209. .. fieldlookup:: same_as
  210. ``exact``, ``same_as``
  211. ----------------------
  212. *Availability*: `PostGIS <https://postgis.net/docs/ST_Geometry_Same.html>`__,
  213. Oracle, MySQL, SpatiaLite, PGRaster (Bilateral)
  214. Tests if the geometry field is "equal" to the lookup geometry. On Oracle and
  215. SpatiaLite it tests spatial equality, while on MySQL and PostGIS it tests
  216. equality of bounding boxes.
  217. Example::
  218. Zipcode.objects.filter(poly=geom)
  219. ========== =================================================
  220. Backend SQL Equivalent
  221. ========== =================================================
  222. PostGIS ``poly ~= geom``
  223. Oracle ``SDO_EQUAL(poly, geom)``
  224. MySQL ``MBREquals(poly, geom)``
  225. SpatiaLite ``Equals(poly, geom)``
  226. ========== =================================================
  227. .. fieldlookup:: intersects
  228. ``intersects``
  229. --------------
  230. *Availability*: `PostGIS <https://postgis.net/docs/ST_Intersects.html>`__,
  231. Oracle, MySQL, SpatiaLite, PGRaster (Bilateral)
  232. Tests if the geometry field spatially intersects the lookup geometry.
  233. Example::
  234. Zipcode.objects.filter(poly__intersects=geom)
  235. ========== =================================================
  236. Backend SQL Equivalent
  237. ========== =================================================
  238. PostGIS ``ST_Intersects(poly, geom)``
  239. Oracle ``SDO_OVERLAPBDYINTERSECT(poly, geom)``
  240. MySQL ``MBRIntersects(poly, geom)``
  241. SpatiaLite ``Intersects(poly, geom)``
  242. ========== =================================================
  243. .. fieldlookup:: isvalid
  244. ``isvalid``
  245. -----------
  246. *Availability*: MySQL (≥ 5.7.5), `PostGIS
  247. <https://postgis.net/docs/ST_IsValid.html>`__, Oracle, SpatiaLite
  248. Tests if the geometry is valid.
  249. Example::
  250. Zipcode.objects.filter(poly__isvalid=True)
  251. ========================== ================================================================
  252. Backend SQL Equivalent
  253. ========================== ================================================================
  254. MySQL, PostGIS, SpatiaLite ``ST_IsValid(poly)``
  255. Oracle ``SDO_GEOM.VALIDATE_GEOMETRY_WITH_CONTEXT(poly, 0.05) = 'TRUE'``
  256. ========================== ================================================================
  257. .. fieldlookup:: overlaps
  258. ``overlaps``
  259. ------------
  260. *Availability*: `PostGIS <https://postgis.net/docs/ST_Overlaps.html>`__,
  261. Oracle, MySQL, SpatiaLite, PGRaster (Bilateral)
  262. .. fieldlookup:: relate
  263. ``relate``
  264. ----------
  265. *Availability*: `PostGIS <https://postgis.net/docs/ST_Relate.html>`__,
  266. Oracle, SpatiaLite, PGRaster (Conversion)
  267. Tests if the geometry field is spatially related to the lookup geometry by
  268. the values given in the given pattern. This lookup requires a tuple parameter,
  269. ``(geom, pattern)``; the form of ``pattern`` will depend on the spatial backend:
  270. PostGIS & SpatiaLite
  271. ~~~~~~~~~~~~~~~~~~~~
  272. On these spatial backends the intersection pattern is a string comprising
  273. nine characters, which define intersections between the interior, boundary,
  274. and exterior of the geometry field and the lookup geometry.
  275. The intersection pattern matrix may only use the following characters:
  276. ``1``, ``2``, ``T``, ``F``, or ``*``. This lookup type allows users to "fine tune"
  277. a specific geometric relationship consistent with the DE-9IM model. [#fnde9im]_
  278. Geometry example::
  279. # A tuple lookup parameter is used to specify the geometry and
  280. # the intersection pattern (the pattern here is for 'contains').
  281. Zipcode.objects.filter(poly__relate=(geom, 'T*T***FF*'))
  282. PostGIS SQL equivalent::
  283. SELECT ... WHERE ST_Relate(poly, geom, 'T*T***FF*')
  284. SpatiaLite SQL equivalent::
  285. SELECT ... WHERE Relate(poly, geom, 'T*T***FF*')
  286. Raster example::
  287. Zipcode.objects.filter(poly__relate=(rast, 1, 'T*T***FF*'))
  288. Zipcode.objects.filter(rast__2__relate=(rast, 1, 'T*T***FF*'))
  289. PostGIS SQL equivalent::
  290. SELECT ... WHERE ST_Relate(poly, ST_Polygon(rast, 1), 'T*T***FF*')
  291. SELECT ... WHERE ST_Relate(ST_Polygon(rast, 2), ST_Polygon(rast, 1), 'T*T***FF*')
  292. Oracle
  293. ~~~~~~
  294. Here the relation pattern is comprised of at least one of the nine relation
  295. strings: ``TOUCH``, ``OVERLAPBDYDISJOINT``, ``OVERLAPBDYINTERSECT``,
  296. ``EQUAL``, ``INSIDE``, ``COVEREDBY``, ``CONTAINS``, ``COVERS``, ``ON``, and
  297. ``ANYINTERACT``. Multiple strings may be combined with the logical Boolean
  298. operator OR, for example, ``'inside+touch'``. [#fnsdorelate]_ The relation
  299. strings are case-insensitive.
  300. Example::
  301. Zipcode.objects.filter(poly__relate=(geom, 'anyinteract'))
  302. Oracle SQL equivalent::
  303. SELECT ... WHERE SDO_RELATE(poly, geom, 'anyinteract')
  304. .. fieldlookup:: touches
  305. ``touches``
  306. -----------
  307. *Availability*: `PostGIS <https://postgis.net/docs/ST_Touches.html>`__,
  308. Oracle, MySQL, SpatiaLite
  309. Tests if the geometry field spatially touches the lookup geometry.
  310. Example::
  311. Zipcode.objects.filter(poly__touches=geom)
  312. ========== ==========================
  313. Backend SQL Equivalent
  314. ========== ==========================
  315. PostGIS ``ST_Touches(poly, geom)``
  316. MySQL ``MBRTouches(poly, geom)``
  317. Oracle ``SDO_TOUCH(poly, geom)``
  318. SpatiaLite ``Touches(poly, geom)``
  319. ========== ==========================
  320. .. fieldlookup:: within
  321. ``within``
  322. ----------
  323. *Availability*: `PostGIS <https://postgis.net/docs/ST_Within.html>`__,
  324. Oracle, MySQL, SpatiaLite, PGRaster (Bilateral)
  325. Tests if the geometry field is spatially within the lookup geometry.
  326. Example::
  327. Zipcode.objects.filter(poly__within=geom)
  328. ========== ==========================
  329. Backend SQL Equivalent
  330. ========== ==========================
  331. PostGIS ``ST_Within(poly, geom)``
  332. MySQL ``MBRWithin(poly, geom)``
  333. Oracle ``SDO_INSIDE(poly, geom)``
  334. SpatiaLite ``Within(poly, geom)``
  335. ========== ==========================
  336. .. fieldlookup:: left
  337. ``left``
  338. --------
  339. *Availability*: `PostGIS <https://postgis.net/docs/ST_Geometry_Left.html>`__,
  340. PGRaster (Conversion)
  341. Tests if the geometry field's bounding box is strictly to the left of the
  342. lookup geometry's bounding box.
  343. Example::
  344. Zipcode.objects.filter(poly__left=geom)
  345. PostGIS equivalent::
  346. SELECT ... WHERE poly << geom
  347. .. fieldlookup:: right
  348. ``right``
  349. ---------
  350. *Availability*: `PostGIS <https://postgis.net/docs/ST_Geometry_Right.html>`__,
  351. PGRaster (Conversion)
  352. Tests if the geometry field's bounding box is strictly to the right of the
  353. lookup geometry's bounding box.
  354. Example::
  355. Zipcode.objects.filter(poly__right=geom)
  356. PostGIS equivalent::
  357. SELECT ... WHERE poly >> geom
  358. .. fieldlookup:: overlaps_left
  359. ``overlaps_left``
  360. -----------------
  361. *Availability*: `PostGIS <https://postgis.net/docs/ST_Geometry_Overleft.html>`__,
  362. PGRaster (Bilateral)
  363. Tests if the geometry field's bounding box overlaps or is to the left of the lookup
  364. geometry's bounding box.
  365. Example::
  366. Zipcode.objects.filter(poly__overlaps_left=geom)
  367. PostGIS equivalent::
  368. SELECT ... WHERE poly &< geom
  369. .. fieldlookup:: overlaps_right
  370. ``overlaps_right``
  371. ------------------
  372. *Availability*: `PostGIS <https://postgis.net/docs/ST_Geometry_Overright.html>`__,
  373. PGRaster (Bilateral)
  374. Tests if the geometry field's bounding box overlaps or is to the right of the lookup
  375. geometry's bounding box.
  376. Example::
  377. Zipcode.objects.filter(poly__overlaps_right=geom)
  378. PostGIS equivalent::
  379. SELECT ... WHERE poly &> geom
  380. .. fieldlookup:: overlaps_above
  381. ``overlaps_above``
  382. ------------------
  383. *Availability*: `PostGIS <https://postgis.net/docs/ST_Geometry_Overabove.html>`__,
  384. PGRaster (Conversion)
  385. Tests if the geometry field's bounding box overlaps or is above the lookup
  386. geometry's bounding box.
  387. Example::
  388. Zipcode.objects.filter(poly__overlaps_above=geom)
  389. PostGIS equivalent::
  390. SELECT ... WHERE poly |&> geom
  391. .. fieldlookup:: overlaps_below
  392. ``overlaps_below``
  393. ------------------
  394. *Availability*: `PostGIS <https://postgis.net/docs/ST_Geometry_Overbelow.html>`__,
  395. PGRaster (Conversion)
  396. Tests if the geometry field's bounding box overlaps or is below the lookup
  397. geometry's bounding box.
  398. Example::
  399. Zipcode.objects.filter(poly__overlaps_below=geom)
  400. PostGIS equivalent::
  401. SELECT ... WHERE poly &<| geom
  402. .. fieldlookup:: strictly_above
  403. ``strictly_above``
  404. ------------------
  405. *Availability*: `PostGIS <https://postgis.net/docs/ST_Geometry_Above.html>`__,
  406. PGRaster (Conversion)
  407. Tests if the geometry field's bounding box is strictly above the lookup
  408. geometry's bounding box.
  409. Example::
  410. Zipcode.objects.filter(poly__strictly_above=geom)
  411. PostGIS equivalent::
  412. SELECT ... WHERE poly |>> geom
  413. .. fieldlookup:: strictly_below
  414. ``strictly_below``
  415. ------------------
  416. *Availability*: `PostGIS <https://postgis.net/docs/ST_Geometry_Below.html>`__,
  417. PGRaster (Conversion)
  418. Tests if the geometry field's bounding box is strictly below the lookup
  419. geometry's bounding box.
  420. Example::
  421. Zipcode.objects.filter(poly__strictly_below=geom)
  422. PostGIS equivalent::
  423. SELECT ... WHERE poly <<| geom
  424. .. _distance-lookups:
  425. Distance Lookups
  426. ================
  427. *Availability*: PostGIS, Oracle, MySQL, SpatiaLite, PGRaster (Native)
  428. For an overview on performing distance queries, please refer to
  429. the :ref:`distance queries introduction <distance-queries>`.
  430. Distance lookups take the following form::
  431. <field>__<distance lookup>=(<geometry/raster>, <distance value>[, 'spheroid'])
  432. <field>__<distance lookup>=(<raster>, <band_index>, <distance value>[, 'spheroid'])
  433. <field>__<band_index>__<distance lookup>=(<raster>, <band_index>, <distance value>[, 'spheroid'])
  434. The value passed into a distance lookup is a tuple; the first two
  435. values are mandatory, and are the geometry to calculate distances to,
  436. and a distance value (either a number in units of the field, a
  437. :class:`~django.contrib.gis.measure.Distance` object, or a `query expression
  438. <ref/models/expressions>`). To pass a band index to the lookup, use a 3-tuple
  439. where the second entry is the band index.
  440. On every distance lookup except :lookup:`dwithin`, an optional element,
  441. ``'spheroid'``, may be included to use the more accurate spheroid distance
  442. calculation functions on fields with a geodetic coordinate system.
  443. On PostgreSQL, the ``'spheroid'`` option uses `ST_DistanceSpheroid
  444. <https://postgis.net/docs/ST_Distance_Spheroid.html>`__ instead of
  445. `ST_DistanceSphere <https://postgis.net/docs/ST_DistanceSphere.html>`__. The
  446. simpler `ST_Distance <https://postgis.net/docs/ST_Distance.html>`__ function is
  447. used with projected coordinate systems. Rasters are converted to geometries for
  448. spheroid based lookups.
  449. .. fieldlookup:: distance_gt
  450. ``distance_gt``
  451. ---------------
  452. Returns models where the distance to the geometry field from the lookup
  453. geometry is greater than the given distance value.
  454. Example::
  455. Zipcode.objects.filter(poly__distance_gt=(geom, D(m=5)))
  456. ========== ==================================================
  457. Backend SQL Equivalent
  458. ========== ==================================================
  459. PostGIS ``ST_Distance/ST_Distance_Sphere(poly, geom) > 5``
  460. Oracle ``SDO_GEOM.SDO_DISTANCE(poly, geom, 0.05) > 5``
  461. SpatiaLite ``Distance(poly, geom) > 5``
  462. ========== ==================================================
  463. .. fieldlookup:: distance_gte
  464. ``distance_gte``
  465. ----------------
  466. Returns models where the distance to the geometry field from the lookup
  467. geometry is greater than or equal to the given distance value.
  468. Example::
  469. Zipcode.objects.filter(poly__distance_gte=(geom, D(m=5)))
  470. ========== ===================================================
  471. Backend SQL Equivalent
  472. ========== ===================================================
  473. PostGIS ``ST_Distance/ST_Distance_Sphere(poly, geom) >= 5``
  474. Oracle ``SDO_GEOM.SDO_DISTANCE(poly, geom, 0.05) >= 5``
  475. SpatiaLite ``Distance(poly, geom) >= 5``
  476. ========== ===================================================
  477. .. fieldlookup:: distance_lt
  478. ``distance_lt``
  479. ---------------
  480. Returns models where the distance to the geometry field from the lookup
  481. geometry is less than the given distance value.
  482. Example::
  483. Zipcode.objects.filter(poly__distance_lt=(geom, D(m=5)))
  484. ========== ==================================================
  485. Backend SQL Equivalent
  486. ========== ==================================================
  487. PostGIS ``ST_Distance/ST_Distance_Sphere(poly, geom) < 5``
  488. Oracle ``SDO_GEOM.SDO_DISTANCE(poly, geom, 0.05) < 5``
  489. SpatiaLite ``Distance(poly, geom) < 5``
  490. ========== ==================================================
  491. .. fieldlookup:: distance_lte
  492. ``distance_lte``
  493. ----------------
  494. Returns models where the distance to the geometry field from the lookup
  495. geometry is less than or equal to the given distance value.
  496. Example::
  497. Zipcode.objects.filter(poly__distance_lte=(geom, D(m=5)))
  498. ========== ===================================================
  499. Backend SQL Equivalent
  500. ========== ===================================================
  501. PostGIS ``ST_Distance/ST_Distance_Sphere(poly, geom) <= 5``
  502. Oracle ``SDO_GEOM.SDO_DISTANCE(poly, geom, 0.05) <= 5``
  503. SpatiaLite ``Distance(poly, geom) <= 5``
  504. ========== ===================================================
  505. .. fieldlookup:: dwithin
  506. ``dwithin``
  507. -----------
  508. Returns models where the distance to the geometry field from the lookup
  509. geometry are within the given distance from one another. Note that you can only
  510. provide :class:`~django.contrib.gis.measure.Distance` objects if the targeted
  511. geometries are in a projected system. For geographic geometries, you should use
  512. units of the geometry field (e.g. degrees for ``WGS84``) .
  513. Example::
  514. Zipcode.objects.filter(poly__dwithin=(geom, D(m=5)))
  515. ========== ======================================
  516. Backend SQL Equivalent
  517. ========== ======================================
  518. PostGIS ``ST_DWithin(poly, geom, 5)``
  519. Oracle ``SDO_WITHIN_DISTANCE(poly, geom, 5)``
  520. SpatiaLite ``PtDistWithin(poly, geom, 5)``
  521. ========== ======================================
  522. Aggregate Functions
  523. -------------------
  524. Django provides some GIS-specific aggregate functions. For details on how to
  525. use these aggregate functions, see :doc:`the topic guide on aggregation
  526. </topics/db/aggregation>`.
  527. ===================== =====================================================
  528. Keyword Argument Description
  529. ===================== =====================================================
  530. ``tolerance`` This keyword is for Oracle only. It is for the
  531. tolerance value used by the ``SDOAGGRTYPE``
  532. procedure; the `Oracle documentation`__ has more
  533. details.
  534. ===================== =====================================================
  535. __ https://docs.oracle.com/database/121/SPATL/GUID-3BD00273-E74F-4830-9444-A3BB15AA0AC4.htm#SPATL466
  536. Example::
  537. >>> from django.contrib.gis.db.models import Extent, Union
  538. >>> WorldBorder.objects.aggregate(Extent('mpoly'), Union('mpoly'))
  539. ``Collect``
  540. ~~~~~~~~~~~
  541. .. class:: Collect(geo_field)
  542. *Availability*: `PostGIS <https://postgis.net/docs/ST_Collect.html>`__,
  543. SpatiaLite
  544. Returns a ``GEOMETRYCOLLECTION`` or a ``MULTI`` geometry object from the geometry
  545. column. This is analogous to a simplified version of the :class:`Union`
  546. aggregate, except it can be several orders of magnitude faster than performing
  547. a union because it simply rolls up geometries into a collection or multi object,
  548. not caring about dissolving boundaries.
  549. ``Extent``
  550. ~~~~~~~~~~
  551. .. class:: Extent(geo_field)
  552. *Availability*: `PostGIS <https://postgis.net/docs/ST_Extent.html>`__,
  553. Oracle, SpatiaLite
  554. Returns the extent of all ``geo_field`` in the ``QuerySet`` as a four-tuple,
  555. comprising the lower left coordinate and the upper right coordinate.
  556. Example::
  557. >>> qs = City.objects.filter(name__in=('Houston', 'Dallas')).aggregate(Extent('poly'))
  558. >>> print(qs['poly__extent'])
  559. (-96.8016128540039, 29.7633724212646, -95.3631439208984, 32.782058715820)
  560. ``Extent3D``
  561. ~~~~~~~~~~~~
  562. .. class:: Extent3D(geo_field)
  563. *Availability*: `PostGIS <https://postgis.net/docs/ST_3DExtent.html>`__
  564. Returns the 3D extent of all ``geo_field`` in the ``QuerySet`` as a six-tuple,
  565. comprising the lower left coordinate and upper right coordinate (each with x, y,
  566. and z coordinates).
  567. Example::
  568. >>> qs = City.objects.filter(name__in=('Houston', 'Dallas')).aggregate(Extent3D('poly'))
  569. >>> print(qs['poly__extent3d'])
  570. (-96.8016128540039, 29.7633724212646, 0, -95.3631439208984, 32.782058715820, 0)
  571. ``MakeLine``
  572. ~~~~~~~~~~~~
  573. .. class:: MakeLine(geo_field)
  574. *Availability*: `PostGIS <https://postgis.net/docs/ST_MakeLine.html>`__,
  575. SpatiaLite
  576. Returns a ``LineString`` constructed from the point field geometries in the
  577. ``QuerySet``. Currently, ordering the queryset has no effect.
  578. Example::
  579. >>> qs = City.objects.filter(name__in=('Houston', 'Dallas')).aggregate(MakeLine('poly'))
  580. >>> print(qs['poly__makeline'])
  581. LINESTRING (-95.3631510000000020 29.7633739999999989, -96.8016109999999941 32.7820570000000018)
  582. ``Union``
  583. ~~~~~~~~~
  584. .. class:: Union(geo_field)
  585. *Availability*: `PostGIS <https://postgis.net/docs/ST_Union.html>`__,
  586. Oracle, SpatiaLite
  587. This method returns a :class:`~django.contrib.gis.geos.GEOSGeometry` object
  588. comprising the union of every geometry in the queryset. Please note that use of
  589. ``Union`` is processor intensive and may take a significant amount of time on
  590. large querysets.
  591. .. note::
  592. If the computation time for using this method is too expensive, consider
  593. using :class:`Collect` instead.
  594. Example::
  595. >>> u = Zipcode.objects.aggregate(Union(poly)) # This may take a long time.
  596. >>> u = Zipcode.objects.filter(poly__within=bbox).aggregate(Union(poly)) # A more sensible approach.
  597. .. rubric:: Footnotes
  598. .. [#fnde9im] *See* `OpenGIS Simple Feature Specification For SQL <http://www.opengis.org/docs/99-049.pdf>`_, at Ch. 2.1.13.2, p. 2-13 (The Dimensionally Extended Nine-Intersection Model).
  599. .. [#fnsdorelate] *See* `SDO_RELATE documentation <https://docs.oracle.com/database/121/SPATL/sdo_relate.htm#SPATL1039>`_, from the Oracle Spatial and Graph Developer's Guide.
  600. .. [#fncovers] For an explanation of this routine, read `Quirks of the "Contains" Spatial Predicate <https://lin-ear-th-inking.blogspot.com/2007/06/subtleties-of-ogc-covers-spatial.html>`_ by Martin Davis (a PostGIS developer).