[GRASS-SVN] r63184 - grass/trunk/temporal/t.rast.neighbors
svn_grass at osgeo.org
svn_grass at osgeo.org
Thu Nov 27 02:50:27 PST 2014
Author: huhabla
Date: 2014-11-27 02:50:27 -0800 (Thu, 27 Nov 2014)
New Revision: 63184
Modified:
grass/trunk/temporal/t.rast.neighbors/t.rast.neighbors.py
Log:
temporal modules: Fixed wrong check for output strds in t.rast.neighbors, thanks to Luca for the report
Modified: grass/trunk/temporal/t.rast.neighbors/t.rast.neighbors.py
===================================================================
--- grass/trunk/temporal/t.rast.neighbors/t.rast.neighbors.py 2014-11-27 09:43:19 UTC (rev 63183)
+++ grass/trunk/temporal/t.rast.neighbors/t.rast.neighbors.py 2014-11-27 10:50:27 UTC (rev 63184)
@@ -109,7 +109,7 @@
grass.warning(_("Space time raster dataset <%s> is empty") % sp.get_id())
return
- new_sp = tgis.check_new_stds(input, "strds", dbif=dbif,
+ new_sp = tgis.check_new_stds(output, "strds", dbif=dbif,
overwrite=overwrite)
# Configure the r.neighbor module
neighbor_module = pymod.Module("r.neighbors", input="dummy",
More information about the grass-commit
mailing list