[GRASS-SVN] r55084 - grass/trunk/scripts/r.fillnulls
svn_grass at osgeo.org
svn_grass at osgeo.org
Sun Feb 17 08:10:35 PST 2013
Author: martinl
Date: 2013-02-17 08:10:35 -0800 (Sun, 17 Feb 2013)
New Revision: 55084
Modified:
grass/trunk/scripts/r.fillnulls/r.fillnulls.py
Log:
r.fillnulls: fix v.surf.rst call ('z' flag removed)
Modified: grass/trunk/scripts/r.fillnulls/r.fillnulls.py
===================================================================
--- grass/trunk/scripts/r.fillnulls/r.fillnulls.py 2013-02-17 13:03:46 UTC (rev 55083)
+++ grass/trunk/scripts/r.fillnulls/r.fillnulls.py 2013-02-17 16:10:35 UTC (rev 55084)
@@ -261,8 +261,8 @@
# launch v.surf.rst
tmp_rmaps.append(holename + '_dem')
if grass.run_command('v.surf.rst', quiet = quiet, input = holename, elev = holename + '_dem',
- zcol = 'value', tension = tension, smooth = smooth,
- segmax = segmax, npmin = npmin, flags = 'z') != 0:
+ zcol = 'value', tension = tension, smooth = smooth,
+ segmax = segmax, npmin = npmin) != 0:
# GTC Hole is NULL area in a raster map
grass.fatal(_("Failed to fill hole %s") % cat)
More information about the grass-commit
mailing list