瀏覽代碼

Moved the temporal GIS code from grass.script into a separate library structure named grass.temporal.

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@48400 15284696-431f-4ddb-bdfa-cd5b030d7da7
Soeren Gebbert 13 年之前
父節點
當前提交
b9940727fd
共有 2 個文件被更改,包括 1 次插入8 次删除
  1. 0 7
      lib/python/__init__.py
  2. 1 1
      lib/python/grass__init__.py

+ 0 - 7
lib/python/__init__.py

@@ -3,10 +3,3 @@ from db     import *
 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 *

+ 1 - 1
lib/python/grass__init__.py

@@ -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")