[GRASS-SVN] r58815 - grass/trunk/lib/python/temporal

svn_grass at osgeo.org svn_grass at osgeo.org
Thu Jan 30 15:08:54 PST 2014


Author: huhabla
Date: 2014-01-30 15:08:54 -0800 (Thu, 30 Jan 2014)
New Revision: 58815

Modified:
   grass/trunk/lib/python/temporal/pythontemporallib.dox
   grass/trunk/lib/python/temporal/temporal_vector_algebra.py
Log:
Documentation update.


Modified: grass/trunk/lib/python/temporal/pythontemporallib.dox
===================================================================
--- grass/trunk/lib/python/temporal/pythontemporallib.dox	2014-01-30 22:26:43 UTC (rev 58814)
+++ grass/trunk/lib/python/temporal/pythontemporallib.dox	2014-01-30 23:08:54 UTC (rev 58815)
@@ -25,7 +25,7 @@
 
 \section PythonTGISPackages Library
 
-Core functionality such as the database interface connection to sqlite3 
+Core functionality such as the initialization function, the database interface connection to sqlite3 
 and postgresql as well as the creation of the temporal database are defined here:
 
 - python::temporal::core
@@ -50,6 +50,10 @@
 - python::temporal::abstract_map_dataset
 - python::temporal::abstract_space_time_dataset
 
+The RPC C-library interface for exit safe and fast access to raster, vector and 3D raster informations:
+
+- python::temporal::c_libraries_interface
+
 All dataset classes that are used in the GRASS temporal modules are specified
 here:
 
@@ -71,7 +75,8 @@
 - python::temporal::create
 - python::temporal::extract
 - python::temporal::factory
-- python::temporal::list
+- python::temporal::open_stds
+- python::temporal::list_stds
 - python::temporal::mapcalc
 - python::temporal::register
 - python::temporal::sampling
@@ -79,14 +84,21 @@
 - python::temporal::stds_import
 - python::temporal::univar_statistics
 
+Spatio-temporal algebra classes for space time raster and vector datasets are defined in:
+
+- python::temporal::temporal_algebra
+- python::temporal::temporal_vector_algebra
+- python::temporal::temporal_vector_operator
+
 Two helper functions to support the listing of space time datasets in the automatically generated GUI:
 
 - python::temporal::gui_support
 
-Lots of unit tests:
+Unittests:
 
-- python::temporal::unit_tests
+- python::temporal::unittests_register
 
+
 \section PythonTGISExamples Examples
 
 \subsection PythonTGISExamplesSimple Simple example

Modified: grass/trunk/lib/python/temporal/temporal_vector_algebra.py
===================================================================
--- grass/trunk/lib/python/temporal/temporal_vector_algebra.py	2014-01-30 22:26:43 UTC (rev 58814)
+++ grass/trunk/lib/python/temporal/temporal_vector_algebra.py	2014-01-30 23:08:54 UTC (rev 58815)
@@ -758,8 +758,9 @@
                     # Create result space time dataset.
                     resultstds = open_new_space_time_dataset(t[1], self.stdstype, \
                                                                 'absolute', t[1], t[1], \
-                                                                'mean', None, \
-                                                                overwrite = grass.overwrite())
+                                                                None, None, \
+                                                                overwrite = grass.overwrite(),
+                                                                dbif=dbif)
                     for map_i in register_list:
                         # Check if modules should be executed from command list.
                         if "cmd_list" in dir(map_i):



More information about the grass-commit mailing list