Nothing
#' Get the available datasets.
#'
#' List the datasets available in pastclim, which can be passed to functions in
#' `pastclim` as values for the parameter `dataset`. Most functions can also be
#' used on custom datasets by setting `dataset="custom"`
#'
#' This function provides a user-friendly list, summarising the many datasets
#' available from WorldClim. A comprehensive list of all available datasets can
#' be obtained with [list_available_datasets].
#'
#' @returns a character vector of the available datasets
#' @export
get_available_datasets <- function() {
all_datasets <- unique(
as.character(
getOption(
"pastclim.dataset_list"
)$dataset
)
)
all_datasets <- all_datasets[!grepl("WorldClim_2.1", all_datasets)]
all_datasets <- all_datasets[!grepl("CHELSA_2.1", all_datasets)]
message(paste(sort(all_datasets), collapse = ", "))
message(
'for present day reconstructions, use "WorldClim_2.1_RESm" or ',
'"CHELSA_2.4_RESm" where RES is an available resolution.'
)
message(
'for future predictions, use "WorldClim_2.1_GCM_SSP_RESm" or ',
'"CHELSA_2.1_GCM_SSP_RESm", where GCM is the GCM model, SSP is ',
"the Shared Socio-economic Pathways scenario."
)
message(
'use help("WorldClim_2.1") or help("CHELSA_2.1") for a ',
"list of available options"
)
}
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.