get_complexity
Calculate complexity of the landscape
get_complexity(landscape_mat, neighbourhood, ordered, base)
landscape_mat
: A matrix objectneighbourhood
: The number of directions in which cell adjacencies are considered as neighbours: 4 (rook's case) or 8 (queen's case). The default is 4.ordered
: The type of pairs considered. Either ordered (TRUE) or unordered (FALSE).base
: The unit in which entropy is measured. The default is "log2",matrix
Calculate complexity of the landscape: entropy of the co-occurrence matrix
landscape <- terra::rast(landscapemetrics::landscape) landscape_mat <- terra::as.matrix(landscape, wide = TRUE) get_complexity(landscape_mat, neighbourhood = 4, ordered = TRUE, base = "log2")
Useful links