Calculates Cushman's configurational entropy for surfaces (2021)
bes_g_cushman(x, nr_of_permutations = 1000, independent = FALSE)
SpatRaster, stars, RasterLayer, RasterStack, RasterBrick, matrix, or array containing one or more continuous rasters
Number of permutations performed on each input raster to calculate possible distribution of "slope" values
Should an independent set of permutations be performed for each input raster?
TRUE
/FALSE
.
Use FALSE
(default) when each of your input rasters has the same configuration.
A tibble
Cushman, S. A. (2021). Generalizing Boltzmann Configurational Entropy to Surfaces, Point Patterns and Landscape Mosaics. In Entropy (Vol. 23, Issue 12, p. 1616). MDPI AG. https://doi.org/10.3390/e23121616
# \donttest{
library(bespatial)
library(terra)
#> terra 1.7.78
gradient = rast(system.file("raster/gradient.tif", package = "bespatial"),
lyrs = 1)
ce2 = bes_g_cushman(gradient, 100)
plot(gradient, main = round(ce2$value, 2))
bes_g_cushman(gradient, 1000, independent = TRUE)
#> # A tibble: 1 × 4
#> layer type metric value
#> <int> <chr> <chr> <dbl>
#> 1 1 gradient cushman 0.488
# }