geoquerysets.txt 29 KB

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