This package expands on Xing et al (2021) doi:10.1093/biosci/biaa067. It adds capabilities to
customize parameter values using functions and shows the results of
habitat connectivity risk index in the form of plots. The goal of
geohabnet
is to enable users to visualize a habitat
connectivity risk index using their own parameter values. The risk
analysis outputs 3 maps -
Mean habitat connectivity (based on a habitat connectivity index defined by the user)
Difference in habitat connectivity
Variance in habitat connectivity
This package currently supports crop maps sourced from
geodata::monfredaCrops()
and
geodata::spamCrops()
. This analysis produces the 3 maps
listed above. There are multiple ways in which functions can be used -
generate the final outcome and then the intermediate outcomes for more
sophisticated use cases. The vignettes provide several examples. The
output values are propagated to other functions for performing
operations such as distance matrix calculation. The values are set in
parameters.yaml
and it can be accessed using
get_parameters()
. See the usage below.
Package can either be installed from CRAN:
install.packages("geohabnet")
#> Installing package into '/private/var/folders/r5/zggvft9d3yn5kh51wqp78rd00000gn/T/Rtmpk04dwi/temp_libpath644e7beb8e10'
#> (as 'lib' is unspecified)
#> Warning: package 'geohabnet' is not available for this version of R
#>
#> A version of this package for your version of R might be available elsewhere,
#> see the ideas at
#> https://cran.r-project.org/doc/manuals/r-patched/R-admin.html#Installing-packages
or the source version of package can be installed from GitHub with:
if (!require("devtools")) {
install.packages("devtools")
}
::install_github("GarrettLab/HabitatConnectivity", subdir = "geohabnet") devtools
library(geohabnet)
<- geohabnet::get_parameters()
param_file # now edit the file
::set_parameters(new_params = param_file) geohabnet
Run the analysis using -
::sensitivity_analysis() geohabnet
parameters.yaml
stores the parameter and its values. It
can be accessed and set using get_parameters()
and
set_parameters()
respectively. By default risk analysis is
run on global index, for which scales are present in
global_scales()
.
Refer to help using ?geohabnet::fun or help(geohabnet::fun)
Refer to article Analyzing risk index using cropland connectivity for more elaborate description and usages of functions in this package.