Nothing
.onAttach <- function(libname, pkgname) {
packageStartupMessage("Welcome to divraster!")
packageStartupMessage("To acknowledge our work use: citation('divraster')")
}
#' Load data adapted from Mota et al. (2022), Tobias et al. (2022),
#' and Jetz et al. (2014)
#'
#' @references Mota, F. M. M. et al. 2022. Climate change is
#' expected to restructure forest frugivorous bird communities in
#' a biodiversity hot-point within the Atlantic Forest. -
#' Diversity and Distributions 28: 2886–2897.
#' @references Tobias, J. A. et al. 2022. AVONET: morphological,
#' ecological and geographical data for all birds. -
#' Ecology Letters 25: 581–597.
#' @references Jetz, W. et al. 2014. Global Distribution and
#' Conservation of Evolutionary Distinctness in Birds. -
#' Current Biology 24: 919–930.
#'
#' @return A list with binary maps of species for the reference
#' and future climate scenarios, species traits, and a rooted
#' phylogenetic tree for the species. The species names across
#' these objects must match!
#' @export
#'
#' @examples
#' data <- load.data()
#' data
load.data <- function() {
ref <- terra::rast(system.file("extdata",
"ref_frugivor.tif",
package = "divraster"))
fut <- terra::rast(system.file("extdata",
"fut_frugivor.tif",
package = "divraster"))
traits <- utils::read.csv(system.file("extdata",
"traits_frugivor.csv",
package = "divraster"),
sep = ";", row.names = 1)
tree <- ape::read.tree(system.file("extdata",
"tree_frugivor.tre",
package = "divraster"))
return(list(ref = ref, fut = fut, traits = traits, tree = tree))
}
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.