[GRASS-SVN] r47730 - grass/branches/releasebranch_6_4/raster3d/r3.in.v5d

svn_grass at osgeo.org svn_grass at osgeo.org
Wed Aug 17 18:13:04 EDT 2011


Author: neteler
Date: 2011-08-17 15:13:04 -0700 (Wed, 17 Aug 2011)
New Revision: 47730

Modified:
   grass/branches/releasebranch_6_4/raster3d/r3.in.v5d/description.html
   grass/branches/releasebranch_6_4/raster3d/r3.in.v5d/main.c
Log:
Milena Nowotarska: i18n cleanup; HTML cleanup

Modified: grass/branches/releasebranch_6_4/raster3d/r3.in.v5d/description.html
===================================================================
--- grass/branches/releasebranch_6_4/raster3d/r3.in.v5d/description.html	2011-08-17 22:08:24 UTC (rev 47729)
+++ grass/branches/releasebranch_6_4/raster3d/r3.in.v5d/description.html	2011-08-17 22:13:04 UTC (rev 47730)
@@ -1,21 +1,22 @@
-<H2>DESCRIPTION</H2>
+<h2>DESCRIPTION</h2>
 
+<em>r3.in.v5d</em> imports 3-dimensional files (i.e. the V5D file with one variable
+and one time step). Otherwise, only first variable and timestep from 4/5D
+V5D file will be imported.
+
+<p>
 <a href="http://www.ssec.wisc.edu/~billh/vis5d.html">Vis5D</a> is a system
 for interactive visualization of large 5D gridded data sets such as those
-produced by numerical weather models. One can make isosurfaces, contour
-line slices, colored slices, volume renderings, etc of data in a 3D grid,
+produced by numerical weather models. The user can make isosurfaces, contour
+line slices, colored slices, volume renderings, etc. of data in a 3D raster map,
 then rotate and animate the images in real time. There's also a feature
 for wind trajectory tracing, a way to make text anotations for publications,
 support for interactive data analysis, etc.
-<br>r3.in.v5d imports 3-dimensional files (i.e. the v5d file with 1 variable
-and 1 time step). Otherwise, only first variable and timestep from 4/5D
-v5d file will be imported.
 
-<h2>
-SEE ALSO</h2>
-<i><a href="r3.out.v5d.html">r3.out.v5d</a></i>
+<h2>SEE ALSO</h2>
+<em><a href="r3.out.v5d.html">r3.out.v5d</a></em>
 
-<h2>
-AUTHOR</h2>
+<h2>AUTHOR</h2>
 Jaro Hofierka, GeoModel s.r.o., Slovakia
+
 <p><i>Last changed: $Date$</i>

Modified: grass/branches/releasebranch_6_4/raster3d/r3.in.v5d/main.c
===================================================================
--- grass/branches/releasebranch_6_4/raster3d/r3.in.v5d/main.c	2011-08-17 22:08:24 UTC (rev 47729)
+++ grass/branches/releasebranch_6_4/raster3d/r3.in.v5d/main.c	2011-08-17 22:13:04 UTC (rev 47730)
@@ -1,6 +1,6 @@
 /*
  * r3.in.v5d - program for data conversion from the V5D format 
- * of the VIS5D visualization software to G3D GRASS
+ * of the VIS5D visualization software to 3D raster GRASS
  * data format.
  *
  * Copyright Jaroslav Hofierka
@@ -64,7 +64,7 @@
     param.input->key = "input";
     param.input->type = TYPE_STRING;
     param.input->required = YES;
-    param.input->description = "v5d raster map to be imported";
+    param.input->description = "V5D raster map to be imported";
 
     param.output = G_define_option();
     param.output->key = "output";
@@ -72,7 +72,7 @@
     param.output->required = YES;
     param.output->multiple = NO;
     param.output->gisprompt = "any,grid3,3d raster";
-    param.output->description = "Name for G3d raster map";
+    param.output->description = "Name for 3D raster map";
 
     param.nv = G_define_option();
     param.nv->key = "nv";
@@ -190,7 +190,7 @@
     module = G_define_module();
     module->keywords = _("raster3d, voxel, import");
     module->description =
-	"  import of 3-dimensional Vis5D files (i.e. the v5d file with 1 variable and 1 time step)";
+	_("Imports 3-dimensional Vis5D files (i.e. the V5D file with 1 variable and 1 time step).");
 
     setParams();
     G3d_setStandard3dInputParams();
@@ -210,12 +210,12 @@
     G3d_getWindow(&region);
     map = G3d_openCellNew(output, FCELL_TYPE, G3D_USE_CACHE_XY, &region);
     if (map == NULL)
-	fatalError(_("Error opening 3d raster map"));
+	fatalError(_("Unable to open 3D raster map"));
 
     convert(input, &region, convertNull, nullValue);
 
     if (!G3d_closeCell(map))
-	fatalError(_("Error closing 3d raster map"));
+	fatalError(_("Unable to close 3D raster map"));
     map = NULL;
 
     return 0;



More information about the grass-commit mailing list