Nothing
#' @title get_edge
#' @description A function to get the WEGE index value for a provided polygon.
#' @param target_area Either a sp or sf object to which to calculate the WEGE
#' index.
#' @param input Species ranges, either from a shapefile or from a georeferenced
#' species list with a column for species, two columns for coordinates and one
#' for the IUCN category.
#' @param x name of the longitude column.
#' @param y name of the latitude column.
#' @param species name of the species column.
#' @param ed name of the evolutionary distinctiveness column.
#' @param category name of IUCN the category column. Terminology must be as
#' follows: DD for Data Deficient, LC for Least Concern, NT for Near Threatened,
#' EN, for Endangered, CR for Critically Endangered, EW for Extinct in the wild
#'
#' and EX for Extinct.
#' @param res grid-cell size to use to calculate the range of the species in
#' case a georeferenced species list was provided.
#' @example examples/get_edge_function.R
#' @return a value corresponding to the EDGE score of the provided target_area
#' @export
get_edge <- function(target_area,input,x,y,species='binomial', ed = 'ED', category = 'category', res = 1) {
if(is.null(input[[species]])){
stop(paste0("No column found with the name - ",paste(species)))
}
if(is.null(input[[category]])){
stop(paste0("No column found with the name - ",paste(category)))
}
if(is.null(input[[ed]])){
stop(paste0("No column found with the name - ",paste(ed)))
}
if (any(class(input) %in% "sf")) {
input_cl <- 'sf_ob'}else {input_cl <- 'df_ob'}
if (any(class(target_area) %in% 'SpatialPolygonsDataFrame')) {
target_area <- sf::st_as_sf(target_area)
}
if (any(class(input) %in% 'SpatialPolygonsDataFrame')) {
input <- sf::st_as_sf(input)
if (!sf::st_crs(target_area) == sf::st_crs(input)) {
stop("Inputs have a different projection")
}
}
if (any(class(input) %in% 'SpatialPolygonsDataFrame')) {
input <- sf::st_as_sf(input)
if (!sf::st_crs(target_area) == sf::st_crs(input)) {
stop("Inputs have a different projection")
}
}
if (any(class(input) %in% "data.frame")) {
crs_ta <- sf::st_crs(target_area)
input <- sf::st_as_sf(x = input,coords = c(x,y),crs = crs_ta)
}
sps_grid <- sf::st_intersects(input,target_area)
intersected_object_t <- t(sps_grid)
sp_numbers <- unlist(intersected_object_t[1:nrow(target_area)])
sp <- unique(input[[species]][sp_numbers])
if (identical(sp, character(0))) {
message("No species found in selected area")
}else{
tmp <- input[input[[species]] %in% sp,]
sf::st_geometry(tmp) <- NULL
tmp <- tmp[,c(species,category,ed)]
tmp <- unique(tmp)
er_df <- cbind.data.frame(status = c('DD','LC','NT','VU','EN','CR','EW','EX'),
ER = c(0.0513,0.0009,0.0071,0.0513,0.4276,0.9688,1,1
))
tmp <- unique(tmp)
tmp <- merge(tmp, er_df, by.x = category, by.y = 'status', sort = TRUE)
return(unlist(lapply(1, function(x) sum(log10((tmp[[ed]])*(tmp$ER + 1))))))
}
}
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.