[GRASS-SVN] r30612 - grass-addons/gipe

svn_grass at osgeo.org svn_grass at osgeo.org
Tue Mar 18 02:16:44 EDT 2008


Author: ychemin
Date: 2008-03-18 02:16:43 -0400 (Tue, 18 Mar 2008)
New Revision: 30612

Modified:
   grass-addons/gipe/gmmenu.tcl
   grass-addons/gipe/menudata.py
Log:
Updated GUIs menus

Modified: grass-addons/gipe/gmmenu.tcl
===================================================================
--- grass-addons/gipe/gmmenu.tcl	2008-03-18 06:07:25 UTC (rev 30611)
+++ grass-addons/gipe/gmmenu.tcl	2008-03-18 06:16:43 UTC (rev 30612)
@@ -141,8 +141,12 @@
 		{command {[G_msg "PNG"]} {} "r.out.png: Export PNG image (not georeferenced)" {} -command { execute r.out.png }}
 		{command {[G_msg "PPM"]} {} "r.out.ppm: Export PPM image (24bit)" {} -command { execute r.out.ppm }}
 		{command {[G_msg "PPM from RGB"]} {} "r.out.ppm3: Export PPM image from red, green, blue raster maps" {} -command { execute r.out.ppm3 }}
+		{separator}
 		{command {[G_msg "POV-Ray"]} {} "r.out.pov: Export POV-Ray height-field" {} -command { execute r.out.pov }}
 		{command {[G_msg "TIFF"]} {} "r.out.tiff: Export TIFF image (8/24bit)" {} -command { execute r.out.tiff }}
+		{command {[G_msg "VIC Mask"]} {} "r.out.vic_mask: Export VIC mask ASCII file" {} -command { execute r.out.vic_mask }}
+		{command {[G_msg "VIC Soil"]} {} "r.out.vic_soil: Export VIC soil ASCII file" {} -command { execute r.out.vic_soil }}
+		{command {[G_msg "VIC Veg"]} {} "r.out.vic_veg: Export VIC vegetation ASCII file" {} -command { execute r.out.vic_veg }}
 		{command {[G_msg "VRML"]} {} "r.out.vrml: Export VRML file" {} -command { execute r.out.vrml }}
 		{command {[G_msg "VTK"]} {} "r.out.vtk: Export VTK ASCII file" {} -command { execute r.out.vtk }}
 	}}

Modified: grass-addons/gipe/menudata.py
===================================================================
--- grass-addons/gipe/menudata.py	2008-03-18 06:07:25 UTC (rev 30611)
+++ grass-addons/gipe/menudata.py	2008-03-18 06:16:43 UTC (rev 30612)
@@ -222,6 +222,18 @@
                                  _("Export TIFF image (8/24bit)"),
                                  "self.OnMenuCmd",
                                  "r.out.tiff"),
+                                (_("VIC Mask export"),
+                                 _("Export VIC Mask ASCII file"),
+                                 "self.OnMenuCmd",
+                                 "r.out.vic_mask"),
+                                (_("VIC Soil export"),
+                                 _("Export VIC Soil ASCII file"),
+                                 "self.OnMenuCmd",
+                                 "r.out.vic_soil"),
+                                (_("VIC Veg export"),
+                                 _("Export VIC Vegetation ASCII file"),
+                                 "self.OnMenuCmd",
+                                 "r.out.vic_veg"),
                                 (_("VRML export"),
                                  _("Export VRML file"),
                                  "self.OnMenuCmd",



More information about the grass-commit mailing list