summaryrefslogtreecommitdiff
path: root/docs/ref
diff options
context:
space:
mode:
authorClaude Paroz <claude@2xlibre.net>2013-12-24 16:53:09 +0100
committerClaude Paroz <claude@2xlibre.net>2013-12-24 16:53:09 +0100
commit9267fb88efb5a81adcf5aac582fb62b3ee269c08 (patch)
tree487365a4fb4fb596e8dbe290022fce6424e0ff72 /docs/ref
parentd17404aa90cf0a439828e7f14105f3f522ab3bcc (diff)
Added more spatial predicates for prepared geometries
GEOS 3.3 added crosses, disjoint, overlaps, touches and within predicates on prepared geometries.
Diffstat (limited to 'docs/ref')
-rw-r--r--docs/ref/contrib/gis/geos.txt44
1 files changed, 42 insertions, 2 deletions
diff --git a/docs/ref/contrib/gis/geos.txt b/docs/ref/contrib/gis/geos.txt
index a1f92b31c7..769c2cdd32 100644
--- a/docs/ref/contrib/gis/geos.txt
+++ b/docs/ref/contrib/gis/geos.txt
@@ -527,8 +527,8 @@ a :class:`Polygon`).
Returns a GEOS ``PreparedGeometry`` for the contents of this geometry.
``PreparedGeometry`` objects are optimized for the contains, intersects,
-and covers operations. Refer to the :ref:`prepared-geometries` documentation
-for more information.
+covers, crosses, disjoint, overlaps, touches and within operations. Refer to
+the :ref:`prepared-geometries` documentation for more information.
.. attribute:: GEOSGeometry.srs
@@ -746,8 +746,48 @@ For example::
.. method:: covers(other)
+ .. method:: crosses(other)
+
+ .. versionadded:: 1.7
+
+ .. note::
+
+ GEOS 3.3 is *required* to use this predicate.
+
+ .. method:: disjoint(other)
+
+ .. versionadded:: 1.7
+
+ .. note::
+
+ GEOS 3.3 is *required* to use this predicate.
+
.. method:: intersects(other)
+ .. method:: overlaps(other)
+
+ .. versionadded:: 1.7
+
+ .. note::
+
+ GEOS 3.3 is *required* to use this predicate.
+
+ .. method:: touches(other)
+
+ .. versionadded:: 1.7
+
+ .. note::
+
+ GEOS 3.3 is *required* to use this predicate.
+
+ .. method:: within(other)
+
+ .. versionadded:: 1.7
+
+ .. note::
+
+ GEOS 3.3 is *required* to use this predicate.
+
Geometry Factories
==================