diff options
| author | Claude Paroz <claude@2xlibre.net> | 2019-02-12 15:41:50 -0500 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2019-02-12 15:43:11 -0500 |
| commit | 28a6046b5479bd230ffda1d8a6deee9b3384bb18 (patch) | |
| tree | bd2f3e871e37dc2c625481d783576d4878b0de08 /docs | |
| parent | d2f942737c86adda92aa5ee7e28ccfa1cd419026 (diff) | |
[2.2.x] Doc'd database functions for overlaps lookup.
Backport of 8cf9dbee6aeca57ab4dac986e46b79a2d234f703 from master
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/ref/contrib/gis/geoquerysets.txt | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/docs/ref/contrib/gis/geoquerysets.txt b/docs/ref/contrib/gis/geoquerysets.txt index e4eae2ad99..154d8736f8 100644 --- a/docs/ref/contrib/gis/geoquerysets.txt +++ b/docs/ref/contrib/gis/geoquerysets.txt @@ -372,6 +372,17 @@ Oracle ``SDO_GEOM.VALIDATE_GEOMETRY_WITH_CONTEXT(poly, 0.05 *Availability*: `PostGIS <https://postgis.net/docs/ST_Overlaps.html>`__, Oracle, MySQL, SpatiaLite, PGRaster (Bilateral) +Tests if the geometry field spatially overlaps the lookup geometry. + +========== ============================ +Backend SQL Equivalent +========== ============================ +PostGIS ``ST_Overlaps(poly, geom)`` +Oracle ``SDO_OVERLAPS(poly, geom)`` +MySQL ``MBROverlaps(poly, geom)`` +SpatiaLite ``Overlaps(poly, geom)`` +========== ============================ + .. fieldlookup:: relate ``relate`` |
