geoquerysets.txt 29 KB

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