geoquerysets.txt 29 KB

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