[GRASS-SVN] r61215 - grass/trunk/temporal/t.rast.aggregate
svn_grass at osgeo.org
svn_grass at osgeo.org
Wed Jul 9 04:05:55 PDT 2014
Author: huhabla
Date: 2014-07-09 04:05:55 -0700 (Wed, 09 Jul 2014)
New Revision: 61215
Modified:
grass/trunk/temporal/t.rast.aggregate/t.rast.aggregate.py
Log:
Fixed wron start_time assinment
Modified: grass/trunk/temporal/t.rast.aggregate/t.rast.aggregate.py
===================================================================
--- grass/trunk/temporal/t.rast.aggregate/t.rast.aggregate.py 2014-07-09 10:34:44 UTC (rev 61214)
+++ grass/trunk/temporal/t.rast.aggregate/t.rast.aggregate.py 2014-07-09 11:05:55 UTC (rev 61215)
@@ -139,7 +139,7 @@
# In case no end time is available, then we use the start time of the last map layer
if end_time is None:
- end_time, tmp_value = map_list[- 1].temporal_extent.get_start_time()
+ end_time = map_list[- 1].temporal_extent.get_start_time()
has_end_time = False
granularity_list = []
More information about the grass-commit
mailing list