Nothing
tst_files <- c(
"PRISM_ppt_stable_4kmM2_19670615_bil",
"PRISM_tmin_provisional_4kmM3_202004_bil",
"PRISM_tmean_30yr_normal_800mM2_annual_bil",
"PRISM_tmax_provisional_4kmM3_2019_bil",
"PRISM_vpdmin_stable_4kmM2_196710_bil",
"PRISM_vpdmax_30yr_normal_4kmM2_04_bil",
"PRISM_ppt_30yr_normal_4kmD1_0301_bil"
)
exp <- c(
"Jun 15 1967 - 4km resolution - Precipitation",
"Apr 2020 - 4km resolution - Minimum temperature",
"Annual 30-year normals - 800m resolution - Mean temperature",
"2019 - 4km resolution - Maximum temperature",
"Oct 1967 - 4km resolution - Minimum vapor pressure deficit",
"Apr 30-year normals - 4km resolution - Maximum vapor pressure deficit",
"March 1 30-year normals - 4km resolution - Precipitation"
)
test_that("pd_get_name() works.", {
expect_identical(pd_get_name(tst_files), exp)
expect_identical(expect_warning(prism_md(tst_files)), exp)
})
exp <- c("1967-06-15", "2020-04-01", "", "2019-01-01", "1967-10-01", "", "")
test_that("pd_get_date() works.", {
expect_identical(pd_get_date(tst_files), exp)
expect_identical(expect_warning(prism_md(tst_files, TRUE)), exp)
})
exp <- c('ppt', 'tmin', 'tmean', 'tmax', 'vpdmin', 'vpdmax', 'ppt')
test_that("pd_get_type() works.", {
expect_identical(pd_get_type(tst_files), exp)
})
test_that("pd_to_file() works.", {
t2 <- c(tst_files[7],
"PRISM_tdmean_stable_4kmM3_200511_bil",
"PRISM_vpdmin_30yr_normal_4kmM4_annual_bil")
tmp <- pd_to_file(t2)
# replace \\ with / if it is there so splitting works
tmp <- stringr::str_replace_all(tmp, "\\\\", "/")
tmp <- stringr::str_split(tmp, "/", simplify = TRUE)
expect_identical(tmp[,ncol(tmp) - 1], t2)
expect_identical(tmp[,ncol(tmp)], paste0(t2, ".bil"))
})
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.