Number of core areas (Core area metric)
Arguments
- landscape
A categorical raster object: SpatRaster; Raster* Layer, Stack, Brick; stars or a list of SpatRasters.
- directions
The number of directions in which patches should be connected: 4 (rook's case) or 8 (queen's case).
- consider_boundary
Logical if cells that only neighbour the landscape boundary should be considered as core
- edge_depth
Distance (in cells) a cell has the be away from the patch edge to be considered as core cell
#' @details $$NCORE = n_{ij}^{core}$$ where \(n_{ij}^{core}\) is the number of disjunct core areas.
NCORE is a 'Core area metric'. A cell is defined as core if the cell has no neighbour with a different value than itself (rook's case). The metric counts the disjunct core areas, whereby a core area is a 'patch within the patch' containing only core cells. It describes patch area and shape simultaneously (more core area when the patch is large, however, the shape must allow disjunct core areas). Thereby, a compact shape (e.g. a square) will contain less disjunct core areas than a more irregular patch.
References
McGarigal K., SA Cushman, and E Ene. 2023. FRAGSTATS v4: Spatial Pattern Analysis Program for Categorical Maps. Computer software program produced by the authors; available at the following web site: https://www.fragstats.org
Examples
landscape <- terra::rast(landscapemetrics::landscape)
lsm_p_ncore(landscape)
#> # A tibble: 28 × 6
#> layer level class id metric value
#> <int> <chr> <int> <int> <chr> <dbl>
#> 1 1 patch 1 1 ncore 0
#> 2 1 patch 1 2 ncore 0
#> 3 1 patch 1 3 ncore 1
#> 4 1 patch 1 4 ncore 0
#> 5 1 patch 1 5 ncore 0
#> 6 1 patch 1 6 ncore 2
#> 7 1 patch 1 7 ncore 2
#> 8 1 patch 1 8 ncore 0
#> 9 1 patch 1 9 ncore 0
#> 10 1 patch 2 10 ncore 1
#> # ℹ 18 more rows