Nothing
# test that the files names generated for chelsa present do point to a valid
# file
test_that("filenames_chelsa_future are correct", {
skip_if_offline()
datasets <- c(
"GFDL-ESM4", "IPSL-CM6A-LR", "MPI-ESM1-2-HR",
"MRI-ESM2-0", "UKESM1-0-LL"
)
scenarios <- c("ssp126", "ssp370", "ssp585")
# annual variables
variables <- c(paste0("bio", sprintf("%02d", 1:19)))
target_datasets <- paste("CHELSA_2.1", datasets,
sample(scenarios, length(datasets), replace = TRUE),
"0.5m",
sep = "_"
)
for (i in seq_len(length(target_datasets))) {
bio_files <- filenames_chelsa_future(
dataset = target_datasets[i],
bio_var = sample(variables, 1)
)
expect_true(url_is_valid(bio_files[sample(1:3, 1)]))
}
# monthly variables
variables <- c(
paste0("temperature_", sprintf("%02d", 1:12)),
paste0("precipitation_", sprintf("%02d", 1:12))
)
for (i in seq_len(length(target_datasets))) {
bio_files <- filenames_chelsa_future(
dataset = target_datasets[i],
bio_var = sample(variables, 1)
)
expect_true(url_is_valid(bio_files[sample(1:3, 1)]))
}
# test npp for a given dataset
bio_files <- filenames_chelsa_future(
dataset = target_datasets[1],
bio_var = "npp"
)
expect_true(url_is_valid(bio_files[sample(1:3, 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.