[GRASS-SVN] r62068 - grass/branches/releasebranch_7_0/vector/v.select

svn_grass at osgeo.org svn_grass at osgeo.org
Wed Sep 24 06:02:09 PDT 2014


Author: neteler
Date: 2014-09-24 06:02:09 -0700 (Wed, 24 Sep 2014)
New Revision: 62068

Modified:
   grass/branches/releasebranch_7_0/vector/v.select/select.c
Log:
v.select: msg if GEOS or GRASS GIS functions are used

Modified: grass/branches/releasebranch_7_0/vector/v.select/select.c
===================================================================
--- grass/branches/releasebranch_7_0/vector/v.select/select.c	2014-09-24 13:01:28 UTC (rev 62067)
+++ grass/branches/releasebranch_7_0/vector/v.select/select.c	2014-09-24 13:02:09 UTC (rev 62068)
@@ -34,6 +34,10 @@
     LList = Vect_new_list();
 
     nalines = Vect_get_num_lines(aIn);
+    if (operator == OP_OVERLAP)
+	G_message("Using GRASS GIS operator...");
+    else
+	G_message("Using GEOS operator...");
     
     /* Lines in A. Go through all lines and mark those that meets condition */
     if (atype & (GV_POINTS | GV_LINES)) {



More information about the grass-commit mailing list