[GRASS-SVN] r33496 - grass/branches/develbranch_6/raster/r.mapcalc
svn_grass at osgeo.org
svn_grass at osgeo.org
Mon Sep 22 00:22:27 EDT 2008
Author: hamish
Date: 2008-09-22 00:22:27 -0400 (Mon, 22 Sep 2008)
New Revision: 33496
Modified:
grass/branches/develbranch_6/raster/r.mapcalc/r.mapcalc.html
Log:
typo
Modified: grass/branches/develbranch_6/raster/r.mapcalc/r.mapcalc.html
===================================================================
--- grass/branches/develbranch_6/raster/r.mapcalc/r.mapcalc.html 2008-09-21 15:55:09 UTC (rev 33495)
+++ grass/branches/develbranch_6/raster/r.mapcalc/r.mapcalc.html 2008-09-22 04:22:27 UTC (rev 33496)
@@ -499,12 +499,13 @@
<div class="code"><pre>
newmap = if(map<5, null(), 5)
</pre></div>
-The graph function allows users to specify a x-y conversion using
+The graph() function allows users to specify a x-y conversion using
pairs of x,y coordinates.
In some situations a transformation from one value to another is not
easily established mathematically, but can be represented by a 2-D
-graph. The graph() function provides the opportunity to accomplish
-this. An x-axis value is provided to the graph function along with
+graph and then linearly interpolated. The graph() function provides
+the opportunity to accomplish this.
+An x-axis value is provided to the graph function along with
the associated graph represented by a series of x,y pairs. The x
values must be monotonically increasing (each larger than or equal to
the previous). The graph function linearly interpolates between
@@ -518,8 +519,8 @@
X (map) values supplied and y (newmap) values returned:
<div class="code"><pre>
0, 10
-1, 10,
-1.5, 16.5
+1, 10
+1.5, 17.5
2.9, 47.5
4, 50
100, 50
More information about the grass-commit
mailing list