landscapemetrics (version 1.4.4)

lsm_p_contig: CONTIG (patch level)

Description

Contiguity index (Shape metric)

Usage

lsm_p_contig(landscape, directions)

# S3 method for RasterLayer lsm_p_contig(landscape, directions = 8)

# S3 method for RasterStack lsm_p_contig(landscape, directions = 8)

# S3 method for RasterBrick lsm_p_contig(landscape, directions = 8)

# S3 method for stars lsm_p_contig(landscape, directions = 8)

# S3 method for list lsm_p_contig(landscape, directions = 8)

Arguments

landscape

Raster* Layer, Stack, Brick or a list of rasterLayers.

directions

The number of directions in which patches should be connected: 4 (rook's case) or 8 (queen's case).

Value

tibble

Details

$$CONTIG = \frac{\Bigg[\frac{\sum\limits_{r=1}^z c_{ijr}}{a_{ij}}\Bigg] - 1 }{ v - 1} $$

where \(c_{ijr}\) is the contiguity value for pixel r in patch ij, \(a_{ij}\) the area of the respective patch (number of cells) and \(v\) is the size of the filter matrix (13 in this case).

CONTIG is a 'Shape metric'. It asses the spatial connectedness (contiguity) of cells in patches. CONTIG coerces patch values to a value of 1 and the background to NA. A nine cell focal filter matrix:

filter_matrix <- matrix(c(1, 2, 1,
                          2, 1, 2,
                          1, 2, 1), 3, 3, byrow = T)

... is then used to weight orthogonally contiguous pixels more heavily than diagonally contiguous pixels. Therefore, larger and more connections between patch cells in the rookie case result in larger contiguity index values.

Units

None

Range

0 >= CONTIG <= 1

Behaviour

Equals 0 for one-pixel patches and increases to a limit of 1 (fully connected patch).

References

McGarigal, K., SA Cushman, and E Ene. 2012. FRAGSTATS v4: Spatial Pattern Analysis Program for Categorical and Continuous Maps. Computer software program produced by the authors at the University of Massachusetts, Amherst. Available at the following web site: http://www.umass.edu/landeco/research/fragstats/fragstats.html

LaGro, J. 1991. Assessing patch shape in landscape mosaics. Photogrammetric Engineering and Remote Sensing, 57(3), 285-293

See Also

lsm_c_contig_mn, lsm_c_contig_sd, lsm_c_contig_cv, lsm_l_contig_mn, lsm_l_contig_sd, lsm_l_contig_cv

Examples

Run this code
# NOT RUN {
lsm_p_contig(landscape)

# }

Run the code above in your browser using DataCamp Workspace