man r.neighbors () - Makes each cell category value a function of the category values assigned to the cells around it, and stores new cell values in an output raster map layer.
NAME
r.neighbors - Makes each cell category value a function of the category values assigned to the cells around it, and stores new cell values in an output raster map layer.
SYNOPSIS
r.neighbors
r.neighbors help
r.neighbors [-aq] input=string output=string method=string size=integer [title="phrase"]
Flags:
- "-a
- Do not align output with the input
- "-q
- Run quietly
Parameters:
- "input=string
- Name of existing raster file
- "output=string
- Name of the new raster file
- "method=string
- Neighborhood operation Options: average,median,mode,minimum,maximum,stddev,sum,variance,diversity,interspersion
- "size=integer
- Neighborhood size Options: 1,3,5,7,9,11,13,15,17,19,21,23,25
- title= Title of the output raster file
DESCRIPTION
r.neighbors looks at each cell in a raster input file, and examines the values assigned to the cells in some user-defined "neighborhood" around it. It outputs a new raster map layer in which each cell is assigned a value that is some (user-specified) function of the values in that cell's neighborhood. For example, each cell in the output layer might be assigned a value equal to the average of the values appearing in its 3 x 3 cell "neighborhood" in the input layer.
The program will be run non-interactively if the user specifies program arguments (see OPTIONS) on the command line. Alternately, the user can simply type r.neighbors on the command line, without program arguments. In this case, the user will be prompted for flag settings and parameter values.
OPTIONS
The user must specify the names of the raster map layers to be used for input and output, the method used to analyze neighborhood values (i.e., the neighborhood function or operation to be performed), and the size of the neighborhood. Optionally, the user can also specify the TITLE to be assigned to the raster map layer output, elect to not align the resolution of the output with that of the input (the -a option), and elect to run r.neighbors quietly (the -q option). These options are described further below.
Neighborhood Operation Methods: The neighborhood operators determine what new value a center cell in a neighborhood will have after examining values inside its neighboring cells. Each cell in a raster map layer becomes the center cell of a neighborhood as the neighborhood window moves from cell to cell throughout the map layer. r.neighbors can perform the following operations:
- "average
-
The average value within the neighborhood.
In the following example, the result would be:
(7*4 + 6 + 5 + 4*3)/9 = 5.66
The result is rounded to the nearest integer (in this case 6). - "median
- The value found half-way through a list of the neighborhood's values, when these are ranged in numerical order.
- "mode
- The most frequently occurring value in the neighborhood.
- "minimum
- The minimum value within the neighborhood.
- "maximum
-
The maximum value within the neighborhood.
Raw Data Operation New Data
---------------- ----------------
| 7 | 7 | 5 | | | | |
|----|----|----| average |----|----|----|
| 4 | 7 | 4 |-------| | 6 | |
|----|----|----| |----|----|----|
| 7 | 6 | 4 | | | | |
|----|----|----| |----|----|----|
- "stddev
- The statistical standard deviation of values within the neighborhood (rounded to the nearest integer).
- "sum
- The sum of values within the neighborhood.
- "variance
- The statistical variance of values within the neighborhood (rounded to the nearest integer).
- "diversity
- The number of different values within the neighborhood. In the above example, the diversity is 4.
- "interspersion
-
The percentage of cells containing values which differ from the values
assigned to the center cell in the neighborhood, plus 1.
In the above example, the interspersion is:
5/8 * 100 + 1 = 63.5
The result is rounded to the nearest integer (in this case 64). ERROR .RE
Neighborhood Size:
The neighborhood size specifies which cells surrounding any given
cell fall into the neighborhood for that cell.
The size must be an odd integer.
Options are: 1, 3, 5, 7, 9, 11, 13, 15, 17, 19, 21, 23, and 25.
For example,
_ _ _
|_|_|_|
3 x 3 neighborhood - |_|_|_|
|_|_|_|
- "-a
- If specified, r.neighbors will not align the output raster map layer with that of the input raster map layer. The r.neighbors program works in the current geographic region. It is recommended, but not required, that the resolution of the geographic region be the same as that of the raster map layer. By default, if unspecified, r.neighbors will align these geographic region settings.
- "-q
- If specified, r.neighbors will run relatively quietly (i.e., without printing to standard output notes on the program's progress). If unspecified, the program will print messages to standard output by default.
NOTES
The r.neighbors program works in the current geographic region with the current mask, if any. It is recommended, but not required, that the resolution of the geographic region be the same as that of the raster map layer. By default, r.neighbors will align these geographic region settings. However, the user can elect to keep original input and output resolutions which are not aligned by specifying this (e.g., using the -a option).
r.neighbors copies the GRASS color files associated with the input raster map layer for those output map layers that are based on the neighborhood average, median, mode, minimum, and maximum. Because standard deviation, variance, diversity, and interspersion are indices, rather than direct correspondents to input values, no color files are copied for these map layers. (The user should note that although the color file is copied for averaged neighborhood function output, whether or not the color file makes sense for the output will be dependent on the input data values.)
SEE ALSO
g.region
r.clump
r.mapcalc
r.mask
r.mfilter
r.support
AUTHOR
Michael Shapiro, U.S.Army Construction Engineering Research Laboratory
Last changed: $Date: 2003/04/28 07:33:10 $
Help Index