[GRASS-SVN] r48400 - grass/trunk/lib/python

svn_grass at osgeo.org svn_grass at osgeo.org
Wed Sep 21 17:09:29 EDT 2011


Author: huhabla
Date: 2011-09-21 14:09:29 -0700 (Wed, 21 Sep 2011)
New Revision: 48400

Modified:
   grass/trunk/lib/python/__init__.py
   grass/trunk/lib/python/grass__init__.py
Log:
Moved the temporal GIS code from grass.script into a separate library structure named grass.temporal.

Modified: grass/trunk/lib/python/__init__.py
===================================================================
--- grass/trunk/lib/python/__init__.py	2011-09-21 21:06:55 UTC (rev 48399)
+++ grass/trunk/lib/python/__init__.py	2011-09-21 21:09:29 UTC (rev 48400)
@@ -3,10 +3,3 @@
 from raster import *
 from raster3d import *
 from vector import *
-# Temporal GIS library functions
-from tgis_core import *
-from tgis_base import *
-from tgis_temporal_extent import *
-from tgis_spatial_extent import *
-from tgis_metadata import *
-from tgis_space_time_datasets import *

Modified: grass/trunk/lib/python/grass__init__.py
===================================================================
--- grass/trunk/lib/python/grass__init__.py	2011-09-21 21:06:55 UTC (rev 48399)
+++ grass/trunk/lib/python/grass__init__.py	2011-09-21 21:09:29 UTC (rev 48400)
@@ -1,4 +1,4 @@
 import os
-__all__ = ["script"]
+__all__ = ["script", "temporal"]
 if os.path.exists(os.path.join(os.path.dirname(__file__), "lib", "__init__.py")):
     __all__.append("lib")



More information about the grass-commit mailing list