From 1be9585d73c50df733eb4d1484651bb8548a1205 Mon Sep 17 00:00:00 2001 From: Burak Kadir Er Date: Fri, 20 May 2022 17:47:10 +0300 Subject: [PATCH] Fixed #33721 -- Added DE-9IM link in GEOS docs. --- docs/ref/contrib/gis/geos.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/ref/contrib/gis/geos.txt b/docs/ref/contrib/gis/geos.txt index a8057dc6319..08a64a2a1db 100644 --- a/docs/ref/contrib/gis/geos.txt +++ b/docs/ref/contrib/gis/geos.txt @@ -410,7 +410,7 @@ return a boolean. The ``covers`` predicate has the following equivalent definitions: * Every point of the other geometry is a point of this geometry. - * The DE-9IM Intersection Matrix for the two geometries is + * The `DE-9IM`_ Intersection Matrix for the two geometries is ``T*****FF*``, ``*T****FF*``, ``***T**FF*``, or ``****T*FF*``. If either geometry is empty, returns ``False``. @@ -423,6 +423,8 @@ return a boolean. added benefit, ``covers()`` is more amenable to optimization and hence should outperform :meth:`~GEOSGeometry.contains`. + .. _DE-9IM: https://en.wikipedia.org/wiki/DE-9IM + .. method:: GEOSGeometry.crosses(other) Returns ``True`` if the DE-9IM intersection matrix for the two Geometries