[GRASS-SVN] r41797 - grass/trunk/gui/wxpython/scripts
svn_grass at osgeo.org
svn_grass at osgeo.org
Sat Apr 10 16:49:22 EDT 2010
Author: martinl
Date: 2010-04-10 16:49:21 -0400 (Sat, 10 Apr 2010)
New Revision: 41797
Added:
grass/trunk/gui/wxpython/scripts/d.rast3.py
Removed:
grass/trunk/gui/wxpython/scripts/d.rast3d
Log:
use py extension for Python scripts
Copied: grass/trunk/gui/wxpython/scripts/d.rast3.py (from rev 41793, grass/trunk/gui/wxpython/scripts/d.rast3d)
===================================================================
--- grass/trunk/gui/wxpython/scripts/d.rast3.py (rev 0)
+++ grass/trunk/gui/wxpython/scripts/d.rast3.py 2010-04-10 20:49:21 UTC (rev 41797)
@@ -0,0 +1,36 @@
+#!/usr/bin/env python
+#
+############################################################################
+#
+# MODULE: d.rast3d
+#
+# AUTHOR(S): Martin Landa <landa.martin gmail.com>
+#
+# PURPOSE: Wrapper for wxGUI -- add 3d raster map layer into layer tree
+#
+# COPYRIGHT: (C) 2008 by the GRASS Development Team
+#
+# This program is free software under the GNU General Public
+# License (>=v2). Read the file COPYING that comes with GRASS
+# for details.
+#
+#############################################################################
+
+#%module
+#% description: Displays 3d raster data in the active frame on the graphics monitor.
+#% keywords: display, raster3d
+#%end
+
+#%option
+#% key: map
+#% type: string
+#% gisprompt: old,grid3,3d-raster
+#% description: 3D raster map to be displayed
+#% required : yes
+#%end
+
+from grass.script import core as grass
+
+if __name__ == "__main__":
+ options, flags = grass.parser()
+ main()
Deleted: grass/trunk/gui/wxpython/scripts/d.rast3d
===================================================================
--- grass/trunk/gui/wxpython/scripts/d.rast3d 2010-04-10 20:48:13 UTC (rev 41796)
+++ grass/trunk/gui/wxpython/scripts/d.rast3d 2010-04-10 20:49:21 UTC (rev 41797)
@@ -1,36 +0,0 @@
-#!/usr/bin/env python
-#
-############################################################################
-#
-# MODULE: d.rast3d
-#
-# AUTHOR(S): Martin Landa <landa.martin gmail.com>
-#
-# PURPOSE: Wrapper for wxGUI -- add 3d raster map layer into layer tree
-#
-# COPYRIGHT: (C) 2008 by the GRASS Development Team
-#
-# This program is free software under the GNU General Public
-# License (>=v2). Read the file COPYING that comes with GRASS
-# for details.
-#
-#############################################################################
-
-#%module
-#% description: Displays 3d raster data in the active frame on the graphics monitor.
-#% keywords: display, raster3d
-#%end
-
-#%option
-#% key: map
-#% type: string
-#% gisprompt: old,grid3,3d-raster
-#% description: 3D raster map to be displayed
-#% required : yes
-#%end
-
-from grass.script import core as grass
-
-if __name__ == "__main__":
- options, flags = grass.parser()
- main()
More information about the grass-commit
mailing list