geoquerysets.txt 26 KB

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