Nothing
#' @title Final conservation score ex situ
#' @name FCSex
#' @description This function calculates the average of the three ex situ conservation metrics
#' returning a final conservation score summary table. It also assigns conservation priority categories
#'
#' @param taxon A character object that defines the name of the species as listed in the occurrence dataset
#' @param srsex A dataframe contain the results from the srsex function
#' @param grsex A dataframe contain the results from the grsex function
#' @param ersex A dataframe contain the results from the ersex function
#'
#' @return out_df : a data frames of values summarizing the results of the function
#'
#' @examples
#' ##Obtaining occurrences from example
#' data(CucurbitaData)
#' ##Obtaining Raster_list
#' data(CucurbitaRasts)
#' ##Obtaining protected areas raster
#' data(ProtectedAreas)
#' ## ecoregion features
#' data(ecoregions)
#'
#' # convert the dataset for function
#' taxon <- "Cucurbita_cordata"
#' sdm <- terra::unwrap(CucurbitaRasts)$cordata
#' occurrenceData <- CucurbitaData
#' protectedAreas <- terra::unwrap(ProtectedAreas)
#' ecoregions <- terra::unwrap(ecoregions)
#' # generate exsitu conservation summaries
#' srs_exsitu <- SRSex(taxon = taxon,
#' occurrenceData = CucurbitaData
#' )
#'
#' gBuffer <- generateGBuffers(taxon = taxon,
#' occurrenceData = occurrenceData,
#' bufferDistM = 50000
#' )#'
#'
#' grs_exsitu <- GRSex(taxon = taxon,
#' sdm = sdm,
#' gBuffer = gBuffer
#' )
#'
#' ers_exsitu <- ERSex(taxon = taxon,
#' sdm = sdm,
#' occurrenceData = occurrenceData,
#' gBuffer = gBuffer,
#' ecoregions = ecoregions,
#' idColumn = "ECO_NAME"
#' )
#'
#' #Running fcsex
#' fcs_exsitu <- FCSex(taxon = taxon,
#' srsex = srs_exsitu,
#' grsex = grs_exsitu,
#' ersex = ers_exsitu)
#'
#'
#'
#' @references
#' Khoury et al. (2019) Ecological Indicators 98:420-429. \doi{10.1016/j.ecolind.2018.11.016}
#' Carver et al. (2021) GapAnalysis: an R package to calculate conservation indicators using spatial information
#' @export
#'
FCSex <- function(taxon, srsex, grsex, ersex){
# calculate the mean across the three measures
srs <- srsex$`SRS exsitu`
grs <- grsex$results$`GRS exsitu`
ers <- ersex$results$`ERS exsitu`
# generate the mean exsitu score
sp_fcs <- mean(c(srs,
ers,
grs), na.rm=TRUE)
out_df <- dplyr::tibble(Taxon = taxon,
"SRS exsitu"= srs,
"GRS exsitu" = grs,
"ERS exsitu"= ers,
"FCS exsitu"=sp_fcs,
"FCS exsitu score" = NA)
#assign classes (min)
if (sp_fcs < 25) {
score <- "UP"
} else if (sp_fcs >= 25 & sp_fcs < 50) {
score <- "HP"
} else if (sp_fcs >= 50 & sp_fcs < 75) {
score <- "MP"
} else {
score <- "LP"
}
out_df$"FCS exsitu score" <- score
return(out_df)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.