[GRASS-SVN] r62067 - grass/trunk/vector/v.select
svn_grass at osgeo.org
svn_grass at osgeo.org
Wed Sep 24 06:01:28 PDT 2014
Author: neteler
Date: 2014-09-24 06:01:28 -0700 (Wed, 24 Sep 2014)
New Revision: 62067
Modified:
grass/trunk/vector/v.select/select.c
Log:
v.select: msg if GEOS or GRASS GIS functions are used
Modified: grass/trunk/vector/v.select/select.c
===================================================================
--- grass/trunk/vector/v.select/select.c 2014-09-24 12:25:53 UTC (rev 62066)
+++ grass/trunk/vector/v.select/select.c 2014-09-24 13:01:28 UTC (rev 62067)
@@ -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