[GRASS-SVN] r63386 - grass/trunk/scripts/r.fillnulls

svn_grass at osgeo.org svn_grass at osgeo.org
Fri Dec 5 10:51:33 PST 2014


Author: neteler
Date: 2014-12-05 10:51:33 -0800 (Fri, 05 Dec 2014)
New Revision: 63386

Modified:
   grass/trunk/scripts/r.fillnulls/r.fillnulls.py
Log:
r.fillnulls: update r.resamp.bspline call

Modified: grass/trunk/scripts/r.fillnulls/r.fillnulls.py
===================================================================
--- grass/trunk/scripts/r.fillnulls/r.fillnulls.py	2014-12-05 18:47:44 UTC (rev 63385)
+++ grass/trunk/scripts/r.fillnulls/r.fillnulls.py	2014-12-05 18:51:33 UTC (rev 63386)
@@ -392,12 +392,12 @@
             grass.run_command('r.resamp.bspline', input = input, mask = usermask,
                 output = prefix + 'filled', method = method, 
                 ew_step = 3 * reg['ewres'], ns_step = 3 * reg['nsres'], 
-                _lambda = 0.01, flags = 'n')
+                lambda_ = 0.01, flags = 'n')
         else:
             grass.run_command('r.resamp.bspline', input = input,
                 output = prefix + 'filled', method = method, 
                 ew_step = 3 * reg['ewres'], ns_step = 3 * reg['nsres'], 
-                _lambda = 0.01, flags = 'n')
+                lambda_ = 0.01, flags = 'n')
 
     # restoring user's mask, if present:
     if usermask:



More information about the grass-commit mailing list