[GRASS-SVN] r58234 - in grass/trunk/raster: r.buffer r.clump r.distance r.grow r.grow.distance
svn_grass at osgeo.org
svn_grass at osgeo.org
Sat Nov 16 09:01:09 PST 2013
Author: neteler
Date: 2013-11-16 09:01:09 -0800 (Sat, 16 Nov 2013)
New Revision: 58234
Modified:
grass/trunk/raster/r.buffer/r.buffer.html
grass/trunk/raster/r.clump/r.clump.html
grass/trunk/raster/r.distance/r.distance.html
grass/trunk/raster/r.grow.distance/r.grow.distance.html
grass/trunk/raster/r.grow/r.grow.html
Log:
manual: more cross-references
Modified: grass/trunk/raster/r.buffer/r.buffer.html
===================================================================
--- grass/trunk/raster/r.buffer/r.buffer.html 2013-11-16 15:51:06 UTC (rev 58233)
+++ grass/trunk/raster/r.buffer/r.buffer.html 2013-11-16 17:01:09 UTC (rev 58234)
@@ -99,12 +99,19 @@
<h2>SEE ALSO</h2>
<em>
+<a href="r.buffer.lowmem.html">r.buffer.lowmem</a>,
+<a href="r.grow.html">r.grow</a>,
+<a href="v.buffer.html">v.buffer</a>
+</em>
+
+<p>
+<em>
<a href="g.region.html">g.region</a>,
-<a href="r.buffer.lowmem.html">r.buffer.lowmem</a>,
<a href="r.cost.html">r.cost</a>,
+<a href="r.distance.html">r.distance</a>,
+<a href="r.grow.distance.html">r.grow.distance</a>,
<a href="r.mapcalc.html">r.mapcalc</a>,
-<a href="r.reclass.html">r.reclass</a>,
-<a href="v.buffer.html">v.buffer</a>
+<a href="r.reclass.html">r.reclass</a>
</em>
<h2>AUTHORS</h2>
Modified: grass/trunk/raster/r.clump/r.clump.html
===================================================================
--- grass/trunk/raster/r.clump/r.clump.html 2013-11-16 15:51:06 UTC (rev 58233)
+++ grass/trunk/raster/r.clump/r.clump.html 2013-11-16 17:01:09 UTC (rev 58234)
@@ -34,12 +34,10 @@
<h2>SEE ALSO</h2>
<em>
+<a href="r.average.html">r.average</a>,
<a href="r.buffer.html">r.buffer</a>,
+<a href="r.distance.html">r.distance</a>,
<a href="r.grow.html">r.grow</a>
-</em>
-
-<p>
-<em>
<a href="r.mapcalc.html">r.mapcalc</a>,
<a href="r.mfilter.html">r.mfilter</a>,
<a href="r.neighbors.html">r.neighbors</a>,
Modified: grass/trunk/raster/r.distance/r.distance.html
===================================================================
--- grass/trunk/raster/r.distance/r.distance.html 2013-11-16 15:51:06 UTC (rev 58233)
+++ grass/trunk/raster/r.distance/r.distance.html 2013-11-16 17:01:09 UTC (rev 58234)
@@ -32,7 +32,8 @@
<b>-l</b>
The -l flag outputs the category labels of the matched raster objects at the
beginning of the line, if they exist.
-<p><b>-o</b>
+<p>
+<b>-o</b>
The -o flag reports zero distance if the input rasters are overlapping.
<p>
<h2>NOTES</h2>
@@ -45,7 +46,8 @@
awk -F: '{print "move",$4,$5,"\ndraw",$6,$7}' | d.graph -m
</pre></div>
-<p>To create a vector map of all the "map1" coordinates, filter the output into
+<p>
+To create a vector map of all the "map1" coordinates, filter the output into
awk and then into <em>v.in.ascii</em>:
<p>
<div class="code"><pre>
@@ -59,10 +61,13 @@
<a href="r.buffer.html">r.buffer</a>,
<a href="r.cost.html">r.cost</a>,
<a href="r.drain.html">r.drain</a>,
+<a href="r.grow.html">r.grow</a>,
+<a href="r.grow.distance.html">r.grow.distance</a>,
<a href="v.distance.html">v.distance</a>
</em>
<h2>AUTHOR</h2>
Michael Shapiro, U.S. Army Construction Engineering Research Laboratory
-<p><i>Last changed: $Date$</i>
+<p>
+<i>Last changed: $Date$</i>
Modified: grass/trunk/raster/r.grow/r.grow.html
===================================================================
--- grass/trunk/raster/r.grow/r.grow.html 2013-11-16 15:51:06 UTC (rev 58233)
+++ grass/trunk/raster/r.grow/r.grow.html 2013-11-16 17:01:09 UTC (rev 58234)
@@ -26,7 +26,8 @@
Cells grown using this metric would form isolines of distance that are
circular from a given point, with the distance given by the <b>radius</b>.
-<p>The <i>Manhattan metric</i>, or <i>Taxicab geometry</i>, is a form of geometry in
+<p>
+The <i>Manhattan metric</i>, or <i>Taxicab geometry</i>, is a form of geometry in
which the usual metric of Euclidean geometry is replaced by a new
metric in which the distance between two points is the sum of the (absolute)
differences of their coordinates. The name alludes to the grid layout of
@@ -40,13 +41,15 @@
where cells grown using this metric would form isolines of distance that are
rhombus-shaped from a given point.
-<p>The <i>Maximum metric</i> is given by the formula
+<p>
+The <i>Maximum metric</i> is given by the formula
<div class="code"><pre>d(dx,dy) = max(abs(dx),abs(dy))</pre></div>
where the isolines of distance from a point are squares.
-<p>If there are two cells which are equal candidates to grow into an empty space,
+<p>
+If there are two cells which are equal candidates to grow into an empty space,
<em>r.grow</em> will choose the northernmost candidate; if there are multiple
candidates with the same northing, the westernmost is chosen.
@@ -69,13 +72,20 @@
<h2>SEE ALSO</h2>
+
<em>
-<a href="r.buffer.html">r.buffer</a>,<br>
-<a href="r.grow.distance.html">r.grow.distance</a>,<br>
+<a href="r.buffer.html">r.buffer</a>,
+<a href="r.grow.distance.html">r.grow.distance</a>
+</em>
+
+<p>
+<em>
+<a href="r.distance.html">r.distance</a>,
<a href="r.patch.html">r.patch</a>
</em>
-<p><em><a href="http://en.wikipedia.org/wiki/Euclidean_metric">Wikipedia Entry: Euclidean Metric</a></em><br>
+<p>
+<em><a href="http://en.wikipedia.org/wiki/Euclidean_metric">Wikipedia Entry: Euclidean Metric</a></em><br>
<em><a href="http://en.wikipedia.org/wiki/Manhattan_metric">Wikipedia Entry: Manhattan Metric</a></em>
@@ -83,6 +93,8 @@
Marjorie Larson,
U.S. Army Construction Engineering Research Laboratory
-<p>Glynn Clements
+<p>
+Glynn Clements
-<p><i>Last changed: $Date$</i>
+<p>
+<i>Last changed: $Date$</i>
Modified: grass/trunk/raster/r.grow.distance/r.grow.distance.html
===================================================================
--- grass/trunk/raster/r.grow.distance/r.grow.distance.html 2013-11-16 15:51:06 UTC (rev 58233)
+++ grass/trunk/raster/r.grow.distance/r.grow.distance.html 2013-11-16 17:01:09 UTC (rev 58234)
@@ -74,6 +74,7 @@
<em>
<a href="r.grow.html">r.grow</a>,
+<a href="r.distance.html">r.distance</a>,
<a href="r.buffer.html">r.buffer</a>,
<a href="r.cost.html">r.cost</a>,
<a href="r.patch.html">r.patch</a>
@@ -92,4 +93,5 @@
Glynn Clements
-<p><i>Last changed: $Date$</i>
+<p>
+<i>Last changed: $Date$</i>
More information about the grass-commit
mailing list