/usr/share/doc/grass-doc/html/r.circle.html is in grass-doc 6.4.3-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>GRASS GIS manual: r.circle</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link rel="stylesheet" href="grassdocs.css" type="text/css">
</head>
<body bgcolor="white">
<img src="grass_logo.png" alt="GRASS logo"><hr align=center size=6 noshade>
<h2>NAME</h2>
<em><b>r.circle</b></em> - Creates a raster map containing concentric rings around a given point.
<h2>KEYWORDS</h2>
raster, geometry
<h2>SYNOPSIS</h2>
<b>r.circle</b><br>
<b>r.circle help</b><br>
<b>r.circle</b> [-<b>b</b>] <b>output</b>=<em>name</em> <b>coordinate</b>=<em>x,y</em> [<b>min</b>=<em>float</em>] [<b>max</b>=<em>float</em>] [<b>mult</b>=<em>float</em>] [--<b>overwrite</b>] [--<b>verbose</b>] [--<b>quiet</b>]
<h3>Flags:</h3>
<DL>
<DT><b>-b</b></DT>
<DD>Generate binary raster map</DD>
<DT><b>--overwrite</b></DT>
<DD>Allow output files to overwrite existing files</DD>
<DT><b>--verbose</b></DT>
<DD>Verbose module output</DD>
<DT><b>--quiet</b></DT>
<DD>Quiet module output</DD>
</DL>
<h3>Parameters:</h3>
<DL>
<DT><b>output</b>=<em>name</em></DT>
<DD>Name for output raster map</DD>
<DT><b>coordinate</b>=<em>x,y</em></DT>
<DD>The coordinate of the center (east,north)</DD>
<DT><b>min</b>=<em>float</em></DT>
<DD>Minimum radius for ring/circle map (in meters)</DD>
<DT><b>max</b>=<em>float</em></DT>
<DD>Maximum radius for ring/circle map (in meters)</DD>
<DT><b>mult</b>=<em>float</em></DT>
<DD>Data value multiplier</DD>
</DL>
<h2>DESCRIPTION</h2>
This module creates an output raster map centered on the <em>x,y</em> values specified
with the <em>coordinate</em> parameter, out to the edge of the current region.
The output cell values increase linearly from the specified center. The <em>min</em>
and <em>max</em> parameters control the inner and outer output raster map radii, respectively.
<p>
The <em>mult</em> parameter can be used to multiply the output raster cells by a common factor.
Note that this parameter does not affect the output raster position or size; only the z-values
are changed with this parameter.
<p>
Binary-output raster maps (solid circles of one value) can be created
with the <b>-b</b> flag. Raster maps so created can be used to create
binary filters for use in <em>i.ifft</em> (inverse Fourier transformations;
apply filter with <em>r.mask</em>).
<h2>EXAMPLES</h2>
Generate a raster circle at current map center with a radius of 300m and outwardly
increasing raster values:
<pre>
EASTCENTER=`g.region -c | awk ' /center easting:/ { print $3 }'`
NORTHCENTER=`g.region -c | awk ' /center northing:/ { print $3 }'`
r.circle output=circle coordinate=${EASTCENTER},${NORTHCENTER} max=300
</pre>
Generate a binary raster ring around current map center with an inner radius
of 500m and an outer radius of 1000m:
<pre>
EASTCENTER=`g.region -c | awk ' /center easting:/ { print $3 }'`
NORTHCENTER=`g.region -c | awk ' /center northing:/ { print $3 }'`
r.circle -b output=circle coordinate=${EASTCENTER},${NORTHCENTER} min=500 max=1000
</pre>
<h2>SEE ALSO</h2>
<em>
<a href="g.region.html">g.region</a>,
<a href="g.remove.html">g.remove</a>,
<a href="g.rename.html">g.rename</a>,
<a href="i.fft.html">i.fft</a>,
<a href="i.ifft.html">i.ifft</a>,
<a href="r.mask.html">r.mask</a>
</em>
<h2>AUTHOR</h2>
Bill Brown, U.S. Army Construction Engineering Research Laboratory<br>
Additional flag/min/max parameter by Markus Neteler, University of Hannover
<p>
<i>Last changed: $Date: 2009-01-05 14:04:18 -0800 (Mon, 05 Jan 2009) $</i>
<HR>
<P><a href="index.html">Main index</a> - <a href="raster.html">raster index</a> - <a href="full_index.html">Full index</a></P>
<P>© 2003-2013 <a href="http://grass.osgeo.org">GRASS Development Team</a></p>
</body>
</html>
|