MK_ProtConn | R Documentation |
This function calculates the Protected Connected indicator (ProtConn) for a region, its fractions and the importance (contribution) of each protected area to maintain connectivity in the region under one or more distance thresholds.
MK_ProtConn(
nodes = NULL,
region = NULL,
area_unit = "m2",
distance = list(type = "centroid", resistance = NULL),
distance_thresholds = NULL,
probability = 0.5,
transboundary = NULL,
transboundary_type = "nodes",
protconn_bound = FALSE,
geom_simplify = FALSE,
delta = FALSE,
plot = FALSE,
write = NULL,
parallel = NULL,
intern = TRUE
)
nodes |
object of class |
region |
object of class |
area_unit |
|
distance |
A |
distance_thresholds |
A |
probability |
A |
transboundary |
|
transboundary_type |
|
protconn_bound |
|
geom_simplify |
|
delta |
|
plot |
|
write |
|
parallel |
|
intern |
|
Table with the following ProtConn values: ECA, Prot, ProtConn, ProtUnconn, RelConn, ProtUnConn[design], ProtConn[bound], ProtConn[Prot], ProtConn[Within],
ProtConn[Contig], ProtConn[Trans], ProtConn[Unprot], ProtConn[Within][land], ProtConn[Contig][land],
ProtConn[Unprot][land], ProtConn[Trans][land]
- If plot is not NULL a list
is returned with the ProtConn table and a plots.
- If delta is TRUE
then it returns an sf class object with the importance value (contribution to ProtConn) for each node in the region.
Saura, S., Bastin, L., Battistella, L., Mandrici, A., & Dubois, G. (2017). Protected areas in the world’s ecoregions: How well connected are they? Ecological Indicators, 76, 144–158.
Saura, S., Bertzky, B., Bastin, L., Battistella, L., Mandrici, A., & Dubois, G. (2018). Protected area connectivity: Shortfalls in global targets and country-level priorities. Biological Conservation, 219(October 2017), 53–67.
## Not run:
library(Makurhini)
library(sf)
load(system.file("extdata", "Protected_areas.rda",
package = "Makurhini", mustWork = TRUE))
data("Ecoregions", package = "Makurhini")
region <- Ecoregions[1,]
test <- MK_ProtConn(nodes = Protected_areas, region = region,
area_unit = "ha",
distance = list(type= "centroid"),
distance_thresholds = c(50000, 10000),
probability = 0.5, transboundary = 50000,
plot = TRUE, parallel = NULL,
protconn_bound = TRUE,
delta = TRUE,
write = NULL, intern = TRUE)
test
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.