Quellcode durchsuchen

v.select: make it clear that 'overlap' is 'intersects' in GEOS, not 'overlaps'

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@72396 15284696-431f-4ddb-bdfa-cd5b030d7da7
Moritz Lennert vor 7 Jahren
Ursprung
Commit
cd35741120
1 geänderte Dateien mit 2 neuen und 2 gelöschten Zeilen
  1. 2 2
      vector/v.select/v.select.html

+ 2 - 2
vector/v.select/v.select.html

@@ -5,7 +5,7 @@ map by features from another one.
 
 <p>Supported operators (without GEOS; using GRASS' own algorithm):
 <ul>
-  <li><b>overlap</b> - features partially or completely overlap
+  <li><b>overlap</b> - features partially or completely overlap (GEOS equivalent: intersects)
 </ul>
 
 Supported operators (internally using
@@ -13,7 +13,7 @@ Supported operators (internally using
 <ul>
   <li><b>equals</b> - features are spatially equals</li>
   <li><b>disjoint</b> - features do not spatially intersect</li>
-  <li><b>intersects</b> - features spatially intersect</li>
+  <li><b>intersects</b> - features spatially intersect (equivalent to native 'overlap')</li>
   <li><b>touches</b> - features spatially touches</li>
   <li><b>crosses</b> - features spatially crosses</li>
   <li><b>within</b> - feature A is completely inside feature B</li>