Title: | Analysing Landscape Composition and Structure at Multiple Scales |
---|---|
Description: | Changes of landscape diversity and structure can be detected soon if relying on landscape class combinations and analysing patterns at multiple scales. 'LandComp' provides such an opportunity, based on Juhász-Nagy's functions (Juhász-Nagy P, Podani J 1983 <doi:10.1007/BF00129432>). Functions can handle multilayered data. Requirements of the input: binary data contained by a regular square or hexagonal grid, and the grid should have projected coordinates. |
Authors: | Krisztina Dóra Konrád [aut, cre, cph]
|
Maintainer: | Krisztina Dóra Konrád <[email protected]> |
License: | MIT + file LICENSE |
Version: | 0.0.5.9000 |
Built: | 2025-04-03 04:04:30 UTC |
Source: | https://github.com/ladylavender/landcomp |
Calculate the number of grid cells covered by the radially enlarged spatial units.
calculate_SpatialUnitSize(aggregation_step, square = FALSE)
calculate_SpatialUnitSize(aggregation_step, square = FALSE)
aggregation_step |
A numeric vector of length one containing a non-negative number. This number expresses the size of the spatial units for which calculation of compositional diversity and associatum is required. The size is measured by the number of rows of grid cells around the central grid cell, where 0 means the original cell without enlargement. Fraction number can be also set as input. In this case, the following step's spatial unit minus grid cells touching the vertices are used as spatial base units. Note, in the case of hexagonal grid, steps falling in the interval ]0,1[ cannot be evaluated. Negative, non-finite and missing values are ignored with warning. |
square |
A logical vector of length one. Should be |
A numeric vector of length one.
calculate_SpatialUnitSize(aggregation_step = 0, square = TRUE) foo = c() for(i in c(0, 0.5, 1, 1.5, 2, 3)) foo = c(foo, calculate_SpatialUnitSize(aggregation_step = i, square = TRUE)) foo vapply(c(0, 1, 1.5, 2, 3), FUN = function(i){ calculate_SpatialUnitSize(aggregation_step = i, square = FALSE)}, FUN.VALUE = numeric(length = 1))
calculate_SpatialUnitSize(aggregation_step = 0, square = TRUE) foo = c() for(i in c(0, 0.5, 1, 1.5, 2, 3)) foo = c(foo, calculate_SpatialUnitSize(aggregation_step = i, square = TRUE)) foo vapply(c(0, 1, 1.5, 2, 3), FUN = function(i){ calculate_SpatialUnitSize(aggregation_step = i, square = FALSE)}, FUN.VALUE = numeric(length = 1))
A generated dataset containing presences and absences of five vegetation types.
data(hexagonal_data)
data(hexagonal_data)
An sf
object with 300 rows and 6 variables.
Krisztina Dóra Konrád [email protected]
Calculate compositional diversity and associatum of landscape data at different spatial scales.
LandComp( x, aggregation_steps = c(0, 1, 1.5, 2:5), parallelrun = TRUE, savememory = FALSE, precision = 4 )
LandComp( x, aggregation_steps = c(0, 1, 1.5, 2:5), parallelrun = TRUE, savememory = FALSE, precision = 4 )
x |
An |
aggregation_steps |
A numeric vector containing non-negative numbers. The vector elements express the size of the spatial units for which calculation of compositional diversity and associatum is required. The size is measured by the number of rows of grid cells around the central grid cell, where 0 means the original grid cell without enlargement. Analysis can be done more precise by giving also fraction numbers as input. In this case, the following step's spatial unit minus grid cells touching the vertices are used as spatial base units. Note, in the case of hexagonal grid, steps falling in the interval ]0,1[ cannot be evaluated. Negative, non-finite and missing values are ignored with warning. |
parallelrun |
A logical vector of length one indicating whether
aggregation should be performed in a parallel way (defaults to |
savememory |
A logical vector of length one indicating whether a slower
but less memory-demanding algorithm should run (defaults to |
precision |
A numeric vector of length one. Number of digits to which the areas of grid cells are rounded. Should be decreased if the grid is not perfectly regular and the equality check of the grid cells' area fails. |
The function is based on the model family created by Juhász-Nagy (1976, 1984, 1993). Compositional diversity (CD) measures the diversity of landscape class combinations. Associatum (AS) characterizes the spatial dependence of landscape classes. It is measured as the difference of the "random" diversity (i.e. predicted diversity with the assumption of independent occurrence of landscape classes) and the observed diversity. Both functions have typically one maximum (CDmax, ASmax), when plotting against increasing scale. Unit sizes corresponding to the maxima values of both functions (ACD, ACD) help to capture the spatial scale holding the most information. These indices, particularly CDmax, ASmax and ACD can be effectively used as indicators (Juhász-Nagy & Podani 1983). Though the functions were originally applied in community ecology, the current function supports their application in the landscape context (see also Konrád et al. 2023).
A data.frame
of length(aggregation_steps)
rows with the following
columns and attribute:
AggregationStep: size of the spatial units measured by
the number of rows of grid cells around the central grid cell. The content
(and order) of this column is the same as the parameter
aggregation_steps
except that negative, non-finite and missing values
are removed. It also serves as an ID in the resulting data.frame
.
SpatialUnit_Size: number of grid cells contained by the aggregated, large unit.
SpatialUnit_Area: area of the aggregated, large unit
SpatialUnit_Count: sample size.
UniqueCombination_Count: number of unique landscape class combinations.
CD_bit: compositional diversity (sensu Juhász-Nagy) of x
.
AS_bit: associatum (sensu Juhász-Nagy) of x
attr(*, "unit"): unit of the CRS of the object provided to x
.
Juhász-Nagy P (1976) Spatial dependence of plant populations. Part 1. Equivalence analysis (An outline of new model). Acta Bot Acad Sci Hung 22: 61–78.
Juhász-Nagy P (1984) Spatial dependence of plant population. 2. A family of new models. Acta Bot Hung 30: 363–402.
Juhász-Nagy P (1993) Notes on compositional diversity. Hydrobiologia 249: 173–182.
Juhász-Nagy P, Podani J (1983) Information theory methods for the study of spatial processes and succession. Vegetatio 51: 129–140.
Konrád KD, Bede-Fazekas Á, Bartha S, Somodi I (2023) Adapting a multiscale approach to assess the compositional diversity of landscapes. Landsc Ecol 38: 2731–2747.
data(square_data) LandComp(x = square_data, aggregation_steps = 0) LandComp(x = square_data, aggregation_steps = 0, parallelrun = FALSE) LandComp(x = square_data, aggregation_steps = c(0.5, 1, 1.5)) data(hexagonal_data) LandComp(x = hexagonal_data, aggregation_steps = c(0, 1, 1.5))
data(square_data) LandComp(x = square_data, aggregation_steps = 0) LandComp(x = square_data, aggregation_steps = 0, parallelrun = FALSE) LandComp(x = square_data, aggregation_steps = c(0.5, 1, 1.5)) data(hexagonal_data) LandComp(x = hexagonal_data, aggregation_steps = c(0, 1, 1.5))
A generated dataset containing presences and absences of five vegetation types.
data(square_data)
data(square_data)
An sf
object with 300 rows and 6 variables.
Krisztina Dóra Konrád [email protected]