How to discover and to describe
In recent years, the ideas of analyzing spatial patterns have been extended through an approach called pattern-based spatial analysis (Long in in. 2010; Cardille in in. 2010; Cardille in in. 2012; Jasiewicz i in. 2013; Jasiewicz i in. 2015).
The fundamental idea is to divide a big area into a large number of smaller areas which we may call local landscapes patches.
Note: The patch size is depending on spatial data resolution and scale of the landscape
The idea is to represent each of this arbitrary areas using a statistical description of the spatial pattern - a spatial signature.
This spatial signatures can be compared using a large number of existing distance or dissimilarity measures (Lin 1991; Cha 2007), which enables spatial analyses such as searching, change detection, clustering, or segmentation.
Most landscape metrics are single numbers representing specific features of a local landscape.
Spatial signatures, on the other hand, are multi-element representations of landscape composition and configuration.
Measuring the distance between two signatures in the form of normalised vectors allows the dissimilarity between spatial structures to be determined. The package [motif] (https://jakubnowosad.com/motif/) is designed to do this work.
Measuring the distance between two signatures in the form of normalized vectors allows determining dissimilarity between spatial structures.
The distance between spatial signatures provides a powerful possibility to identify (dis)similarities in several contexts.
Finding areas with similar topography to the Suwalski Landscape Park
The left maps are showing that many areas in the Amazon have undergone significant land cover changes between 1992 and 2018. The challenge now is to determine which areas have changed the most. The right map shows these areas identified by high JSD values.
Note that changes in both category and spatial configuration are measured.
Areas in Africa with similar spatial structures for two themes have been identified - land cover and landforms.
The quality of each cluster can be assessed using metrics:
library(sf)
landcover = rast(system.file("raster/landcover2015s.tif", package = "motif"))
ecoregions = read_sf(system.file("vector/ecoregionss.gpkg", package = "motif"))
ecoregion1 = ecoregions[1, ]
landcover1 = crop(landcover, ecoregion1, mask = TRUE)
plot(landcover)
plot(landcover1)
search_result = lsp_search(landcover1, landcover,
type = "cove", dist_fun = "jensen-shannon", window = 25,
output = "sf")
plot(search_result["dist"])
exdata/harz_borders.gpkg
file using the read_sf()
function from the sf package.exdata/lc_europe.tif
using the function rast()
from the package terra. Visualise both datasets.<gisma 2024>