[GRASS-SVN] r62866 - grass/branches/releasebranch_7_0/gui/wxpython/animation

svn_grass at osgeo.org svn_grass at osgeo.org
Sat Nov 22 15:20:45 PST 2014


Author: huhabla
Date: 2014-11-22 15:20:45 -0800 (Sat, 22 Nov 2014)
New Revision: 62866

Modified:
   grass/branches/releasebranch_7_0/gui/wxpython/animation/utils.py
Log:
wxgui: temporal API changes

Modified: grass/branches/releasebranch_7_0/gui/wxpython/animation/utils.py
===================================================================
--- grass/branches/releasebranch_7_0/gui/wxpython/animation/utils.py	2014-11-22 23:20:01 UTC (rev 62865)
+++ grass/branches/releasebranch_7_0/gui/wxpython/animation/utils.py	2014-11-22 23:20:45 UTC (rev 62866)
@@ -107,7 +107,7 @@
     Can throw ScriptError if the dataset doesn't exist.
     """
     timeseriesMaps = []
-    sp = tgis.open_old_space_time_dataset(timeseries, etype)
+    sp = tgis.open_old_stds(timeseries, etype)
 
     rows = sp.get_registered_maps(columns="id", where=None, order="start_time")
     timeseriesMaps = []
@@ -152,7 +152,7 @@
 
     if timeseriesList:
         for stds, etype in timeseriesList:
-            sp = tgis.open_old_space_time_dataset(stds, etype)
+            sp = tgis.open_old_stds(stds, etype)
             mapType = sp.get_map_time()  # interval, ...
             tempType = sp.get_initial_values()[0]  # absolute
             timeseriesInfo['mapType'].add(mapType)



More information about the grass-commit mailing list