Browse Source

remove minor differences to https://trac.osgeo.org/grass/changeset/64155 release 70 branch (probably due to improper backports)

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@64156 15284696-431f-4ddb-bdfa-cd5b030d7da7
Vaclav Petras 10 years ago
parent
commit
86910c218e

+ 1 - 1
scripts/r.reclass.area/r.reclass.area.py

@@ -7,7 +7,7 @@
 #               Converted to Python by Glynn Clements
 #               Added rmarea method by Luca Delucchi
 # PURPOSE:      Reclasses a raster map greater or less than user specified area size (in hectares)
-# COPYRIGHT:    (C) 1999,2008 by the GRASS Development Team
+# COPYRIGHT:    (C) 1999,2008,2014 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

+ 2 - 2
scripts/r3.mapcalculator/r3.mapcalculator

@@ -145,8 +145,8 @@ if [ -z "$GIS_OPT_OUTFILE" ]; then
 	g.message -e "Please enter a name for the resulting map and try again."
 	exit 1
 elif [ "$GIS_FLAG_O" = 1 ]; then
-	echo `g.list type=rast | grep -w "$GIS_OPT_OUTFILE" `
-	outtest=`g.list type=rast | grep -w $GIS_OPT_OUTFILE`
+	echo `g.list type=raster | grep -w "$GIS_OPT_OUTFILE" `
+	outtest=`g.list type=raster | grep -w $GIS_OPT_OUTFILE`
 	if [ -n "$outtest" ]; then
 		g.message -e "File $GIS_OPT_OUTFILE exists. Exiting."
 		exit 0