1r.circle(1)                   Grass User's Manual                  r.circle(1)
2
3
4

NAME

6       r.circle   -  Creates a raster map containing concentric rings around a
7       given point
8

KEYWORDS

10       raster
11

SYNOPSIS

13       r.circle
14       r.circle help
15       r.circle [-b]  output=name  coordinate=x,y   [min=float]    [max=float]
16       [mult=float]   [--overwrite]
17
18   Flags:
19       -b  Generate binary raster map
20
21       --overwrite
22
23   Parameters:
24       output=name
25           Name for output raster map
26
27       coordinate=x,y
28           The coordinate of the center (east,north)
29
30       min=float
31           Minimum radius for ring/circle map (in meters)
32
33       max=float
34           Maximum radius for ring/circle map (in meters)
35
36       mult=float
37           Multiplier
38

DESCRIPTION

40       This  module  creates a raster map containing concentric rings around a
41       given point.  The cell values are increasing  linear  from  the  center
42       point  to  outer  rings.  Minimum  and  maximum radius can be selected.
43       Optionally a "donut" ring can be created to use as (binary) filter  for
44       i.ifft inverse Fourier transform (apply filter with r.mask).
45

EXAMPLES

47       Generate a circle at current map center with a radius of 300m:
48             EASTCENTER=`g.region -c |  awk ' /region center easting:/ { print
49       $4 }'`
50             NORTHCENTER=`g.region -c | awk  '  /region  center  northing:/  {
51       print $4 }'`
52             r.circle    -b   out=circle   coordinate=$EASTCENTER,$NORTHCENTER
53       max=300
54
55

SEE ALSO

57       g.remove, g.rename, i.fft, i.ifft
58

AUTHOR

60       Bill Brown, U.S. Army Construction Engineering Research Laboratory
61       Additional flag/min/max parameter by Markus Neteler, University of Han‐
62       nover
63
64       Last changed: $Date: 2006/04/13 19:01:37 $
65
66       Full index
67
68
69
70GRASS 6.2.2                                                        r.circle(1)
Impressum