[GRASS-SVN] r71741 - grass-addons/grass7/vector/v.concave.hull

svn_grass at osgeo.org svn_grass at osgeo.org
Thu Nov 16 02:04:45 PST 2017


Author: mlennert
Date: 2017-11-16 02:04:45 -0800 (Thu, 16 Nov 2017)
New Revision: 71741

Modified:
   grass-addons/grass7/vector/v.concave.hull/v.concave.hull.py
Log:
v.concave.hull: database type should be 'double precision', not 'double' (fix for #3444)

Modified: grass-addons/grass7/vector/v.concave.hull/v.concave.hull.py
===================================================================
--- grass-addons/grass7/vector/v.concave.hull/v.concave.hull.py	2017-11-16 06:34:48 UTC (rev 71740)
+++ grass-addons/grass7/vector/v.concave.hull/v.concave.hull.py	2017-11-16 10:04:45 UTC (rev 71741)
@@ -96,7 +96,7 @@
     grass.run_command('v.category', input = out_lines_nocat, output = out_lines,
                       op = 'add', type = 'line', quiet = True)
     grass.run_command('v.db.addtable', map = out_lines, 
-                      col = 'cat integer,length double', quiet = True)
+                      col = 'cat integer,length double precision', quiet = True)
 
     grass.message(_("Evaluating threshold..."))
     grass.run_command('v.to.db', map = out_lines, type = 'line', op = 'length',



More information about the grass-commit mailing list