[GRASS-SVN] r52550 - grass-addons/grass7/general/g.compare.md5
svn_grass at osgeo.org
svn_grass at osgeo.org
Mon Aug 6 02:07:35 PDT 2012
Author: neteler
Date: 2012-08-06 02:07:34 -0700 (Mon, 06 Aug 2012)
New Revision: 52550
Modified:
grass-addons/grass7/general/g.compare.md5/g.compare.md5.html
grass-addons/grass7/general/g.compare.md5/g.compare.md5.py
Log:
English corrections
Modified: grass-addons/grass7/general/g.compare.md5/g.compare.md5.html
===================================================================
--- grass-addons/grass7/general/g.compare.md5/g.compare.md5.html 2012-08-06 07:47:50 UTC (rev 52549)
+++ grass-addons/grass7/general/g.compare.md5/g.compare.md5.html 2012-08-06 09:07:34 UTC (rev 52550)
@@ -1,33 +1,33 @@
<h2>DESCRIPTION</h2>
-<em>g.md5sum</em> is a module that check if two maps are identical. It use md5
-cryptographic hash function.
-For vector layer it does not check if attribute tables are identical too.
+<em>g.md5sum</em> is a module that checks if two GRASS maps are identical.
+It uses the MD5 cryptographic hash function. For vector map layers it
+does not check if the attribute table(s) are identical, too.
<h2>EXAMPLE</h2>
-North Carolina example, with elevation map
+North Carolina example, with elevation map:
<div class="code"><pre>
-# copy the map
+# copy a raster map
g.copy rast=elevation,dem
-# now check and return true
+# now check and return TRUE
g.md5sum ain=elevation bin=dem
# now change the color table
r.colors map=dem color=srtm
-# check again e return false...
+# check again and it should return FALSE
g.md5sum ain=elevation bin=dem
-# but if add the -c flag return true again
+# but when adding the -c flag (ignore color table), TRUE is returned
g.md5sum -c ain=elevation bin=dem
</pre></div>
-<h2>AUTHORS</h2>
+<h2>AUTHOR</h2>
Luca Delucchi, Fondazione Edmund Mach, Research and Innovation Centre,
Department of Biodiversity and Molecular Ecology,
-<a href="http://gis.cri.fmach.it">GIS and Remote Sensing Unit</a>
+<a href="http://gis.cri.fmach.it">GIS and Remote Sensing Unit</a>, Italy
Modified: grass-addons/grass7/general/g.compare.md5/g.compare.md5.py
===================================================================
--- grass-addons/grass7/general/g.compare.md5/g.compare.md5.py 2012-08-06 07:47:50 UTC (rev 52549)
+++ grass-addons/grass7/general/g.compare.md5/g.compare.md5.py 2012-08-06 09:07:34 UTC (rev 52550)
@@ -6,7 +6,7 @@
#
# AUTHOR(S): Luca Delucchi <lucadeluge at gmail.com>
#
-# PURPOSE: Check if two maps are the same
+# PURPOSE: Check if two GRASS maps are the same
#
# COPYRIGHT: (c) 2012 by Luca Delucchi and the GRASS Development Team
#
@@ -17,7 +17,7 @@
################################################################################
#%module
-#% description: Check if two maps are identical
+#% description: Check if two GRASS maps are identical
#% keywords: general, map management, list
#%end
#%flag
More information about the grass-commit
mailing list