[GRASS-SVN] r72495 - grass/branches/releasebranch_7_4/vector/v.random
svn_grass at osgeo.org
svn_grass at osgeo.org
Thu Mar 22 08:26:33 PDT 2018
Author: martinl
Date: 2018-03-22 08:26:33 -0700 (Thu, 22 Mar 2018)
New Revision: 72495
Modified:
grass/branches/releasebranch_7_4/vector/v.random/main.c
Log:
v.random restrict wrong categories assigned, see #3524
Modified: grass/branches/releasebranch_7_4/vector/v.random/main.c
===================================================================
--- grass/branches/releasebranch_7_4/vector/v.random/main.c 2018-03-22 15:18:10 UTC (rev 72494)
+++ grass/branches/releasebranch_7_4/vector/v.random/main.c 2018-03-22 15:26:33 UTC (rev 72495)
@@ -558,6 +558,10 @@
G_debug(3, " area = %d Vect_point_in_area() = %d", area, ret);
if (ret >= 1) {
+ if (field > 0) {
+ /* read categories for matched area */
+ Vect_get_area_cats(&In, area, Cats);
+ }
outside = 0;
break;
}
More information about the grass-commit
mailing list