[GRASS-SVN] r30900 - grass-addons/gipe
svn_grass at osgeo.org
svn_grass at osgeo.org
Mon Apr 7 23:43:20 EDT 2008
Author: ychemin
Date: 2008-04-07 23:43:20 -0400 (Mon, 07 Apr 2008)
New Revision: 30900
Modified:
grass-addons/gipe/Makefile
grass-addons/gipe/gmmenu.tcl
grass-addons/gipe/menudata.py
Log:
Changed Makefile, GUI menus for r.out.vic
Modified: grass-addons/gipe/Makefile
===================================================================
--- grass-addons/gipe/Makefile 2008-04-08 03:38:31 UTC (rev 30899)
+++ grass-addons/gipe/Makefile 2008-04-08 03:43:20 UTC (rev 30900)
@@ -62,10 +62,7 @@
r.out.ppm \
r.out.ppm3 \
r.out.vrml \
- r.out.vic_mask \
- r.out.vic_met \
- r.out.vic_soil \
- r.out.vic_veg \
+ r.out.vic \
r.out.vtk \
r.param.scale \
r.patch \
Modified: grass-addons/gipe/gmmenu.tcl
===================================================================
--- grass-addons/gipe/gmmenu.tcl 2008-04-08 03:38:31 UTC (rev 30899)
+++ grass-addons/gipe/gmmenu.tcl 2008-04-08 03:43:20 UTC (rev 30900)
@@ -144,10 +144,7 @@
{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 Mask"]} {} "r.out.vic_met: Export VIC meteorological ASCII files" {} -command { execute r.out.vic_met }}
- {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 "VIC"]} {} "r.out.vic: Export VIC ASCII file" {} -command { execute r.out.vic }}
{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-04-08 03:38:31 UTC (rev 30899)
+++ grass-addons/gipe/menudata.py 2008-04-08 03:43:20 UTC (rev 30900)
@@ -222,22 +222,10 @@
_("Export TIFF image (8/24bit)"),
"self.OnMenuCmd",
"r.out.tiff"),
- (_("VIC Mask export"),
- _("Export VIC Mask ASCII file"),
+ (_("VIC export"),
+ _("Export VIC ASCII file"),
"self.OnMenuCmd",
- "r.out.vic_mask"),
- (_("VIC Meteo export"),
- _("Export VIC Meteorological .dat ASCII files"),
- "self.OnMenuCmd",
- "r.out.vic_met"),
- (_("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"),
+ "r.out.vic"),
(_("VRML export"),
_("Export VRML file"),
"self.OnMenuCmd",
More information about the grass-commit
mailing list