Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/r-spatialecology/landscapemetrics
Landscape Metrics for Categorical Map Patterns 🗺️ in R
https://github.com/r-spatialecology/landscapemetrics
landscape-ecology landscape-metrics r raster spatial
Last synced: 20 days ago
JSON representation
Landscape Metrics for Categorical Map Patterns 🗺️ in R
- Host: GitHub
- URL: https://github.com/r-spatialecology/landscapemetrics
- Owner: r-spatialecology
- License: gpl-3.0
- Created: 2018-03-01T07:55:57.000Z (over 6 years ago)
- Default Branch: main
- Last Pushed: 2024-05-22T15:03:24.000Z (6 months ago)
- Last Synced: 2024-06-11T16:07:34.825Z (5 months ago)
- Topics: landscape-ecology, landscape-metrics, r, raster, spatial
- Language: R
- Homepage: https://r-spatialecology.github.io/landscapemetrics
- Size: 72 MB
- Stars: 225
- Watchers: 14
- Forks: 43
- Open Issues: 4
-
Metadata Files:
- Readme: README.Rmd
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
- Code of conduct: CODE_OF_CONDUCT.md
- Codemeta: codemeta.json
Awesome Lists containing this project
README
---
output:
github_document:
html_preview: false
---```{r setup, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```# landscapemetrics
README last updated: `r Sys.Date()`
| CI | Development | CRAN | License |
|----|-------------|------|---------|
| [![R-CMD-check](https://github.com/r-spatialecology/landscapemetrics/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/r-spatialecology/landscapemetrics/actions/workflows/R-CMD-check.yaml) | [![lifecycle](https://img.shields.io/badge/lifecycle-stable-brightgreen.svg)](https://lifecycle.r-lib.org/articles/stages.html) | [![CRAN status](https://www.r-pkg.org/badges/version/landscapemetrics)](https://cran.r-project.org/package=landscapemetrics) | [![License: GPL v3](https://img.shields.io/badge/License-GPLv3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0) |
| [![codecov](https://codecov.io/gh/r-spatialecology/landscapemetrics/branch/main/graph/badge.svg?token=xjYJMNMGBU)](https://codecov.io/gh/r-spatialecology/landscapemetrics) | [![Project Status](http://www.repostatus.org/badges/latest/active.svg)](https://www.repostatus.org/) | [![CRAN downloads](https://cranlogs.r-pkg.org/badges/grand-total/landscapemetrics)](https://cran.r-project.org/package=landscapemetrics) | [![DOI](https://img.shields.io/badge/DOI-10.1111/ecog.04617-blue.svg)](https://doi.org/10.1111/ecog.04617) |> Starting from v2.0.0, **landscapemetrics** uses `terra` and `sf` internally. More information about the `terra` package can be found here: .
## Overview
**landscapemetrics** is a `R` package for calculating landscape metrics for categorical landscape patterns in a tidy workflow. The package can be used as a drop-in replacement for FRAGSTATS (McGarigal *et al.* 2023), as it offers a reproducible workflow for landscape analysis in a single environment. It also allows for calculations of four theoretical metrics of landscape complexity: a marginal entropy, a conditional entropy, a joint entropy, and a mutual information (Nowosad and Stepinski 2019).
**landscapemetrics** supports **terra**, and **stars** and takes `SpatRaster` or `stars` spatial objects as input arguments. Every function can be used in a piped workflow, as it always takes the data as the first argument and returns a `tibble`.
#### Citation
To cite **landscapemetrics** or acknowledge its use, please cite the following Software note, substituting the version of the application that you used for 'v0.0':
Hesselbarth, M.H.K., Sciaini, M., With, K.A., Wiegand, K., Nowosad, J. 2019.
landscapemetrics: an open‐source R tool to calculate landscape metrics. Ecography, 42: 1648-1657 (v0.0).
For more information see [Publication record](https://r-spatialecology.github.io/landscapemetrics/articles/articles/publication_record.html) vignette. The get a BibTex entry, please use `citation("landscapemetrics")`.
## Installation
There are several ways to install **landscapemetrics**:
```{r, eval = FALSE, echo = TRUE}
# Get the stable version from CRAN
install.packages("landscapemetrics")# Alternatively, you can install the development version from Github
# install.packages("remotes")
remotes::install_github("r-spatialecology/landscapemetrics")
```#### Announcement
Due to an improved connected-component labelling algorithm (**landscapemetrics** v1.4 and higher), patches are labeled in a different order than before and therefore different patch IDs might be used compared to previous versions. However, results for all metrics are identical.
## Using landscapemetrics
The resolution of a raster cell has to be in **meters**, as the package converts units internally and returns results in either meters, square meters or hectares. Before using **landscapemetrics**, be sure to check your raster (see `check_landscape()`).
All functions in **landscapemetrics** start with `lsm_` (for **l**and**s**cape **m**etrics). The second part of the name specifies the level (patch - `p`, class - `c` or landscape - `l`). The last part of the function name is the abbreviation of the corresponding metric (e.g. `enn` for the euclidean nearest-neighbor distance):
```
# general structure
lsm_"level"_"metric"# Patch level
## lsm_p_"metric"
lsm_p_enn()# Class level
## lsm_c_"metric"
lsm_c_enn()# Landscape level
## lsm_p_"metric"
lsm_l_enn()
```All functions return an identical structured tibble:
| layer | level | class | id | metric | value |
| ----- | --------- | ----- | -- | ---------------- | ----- |
| 1 | patch | 1 | 1 | landscape metric | x |
| 1 | class | 1 | NA | landscape metric | x |
| 1 | landscape | NA | NA | landscape metric | x |### Using metric functions
Every function follows the same implementation design, so the usage is quite straightforward:
```{r, message = FALSE, warning = FALSE, fig.align = "center", out.width = "75%"}
library(landscapemetrics)
library(terra)# internal data needs to be read
landscape <- terra::rast(landscapemetrics::landscape)# landscape raster
plot(landscape)# calculate for example the Euclidean nearest-neighbor distance on patch level
lsm_p_enn(landscape)# calculate the total area and total class edge length
lsm_l_ta(landscape)
lsm_c_te(landscape)
```There is also a wrapper around every metric in the package to quickly calculate a bunch of metrics:
```{r, message = FALSE}
# calculate all metrics on patch level
calculate_lsm(landscape, level = "patch")
```### Utility functions
**landscapemetrics** further provides several visualization functions, e.g. show all labeled patches or the core area of all patches. All visualization functions start with the prefix `show_` (e.g. `show_cores()`).
Important building blocks of the package are exported to help facilitate analysis or the development of new metrics. They all start with the prefix `get_`. All of them are implemented with Rcpp and have either memory or performance advantages compared to raster functions.
For more details, see the `vignette("utility")`.
### Contributing
One of the major motivations behind **landscapemetrics** is the idea to provide an open-source code collection of landscape metrics. This includes, besides bug reports, especially the idea to include new metrics and functions. Therefore, in case you want to suggest new metrics or functions and in the best case even contribute code, we warmly welcome to do so\! For more information see [CONTRIBUTING](CONTRIBUTING.md).
Maintainers and contributors must follow this repository’s [CODE OF CONDUCT](CODE_OF_CONDUCT.md).
### 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:
Nowosad J., TF Stepinski. 2019. Information theory as a consistent framework for quantification and classification of landscape patterns. https://doi.org/10.1007/s10980-019-00830-x