# \dontshow{
mapme.biodiversity:::.copy_resource_dir(file.path(tempdir(), "mapme-data"))
outdir <- file.path(tempdir(), "mapme-data")
path_gsw_ts <- file.path(outdir, "gsw_time_series")
gsw_fnames_short <- dir(path_gsw_ts, pattern = ".tif$")
gsw_fnames_long <- sub("v5_", "VER5-0_yearlyClassification", gsw_fnames_short)
invisible(file.copy(
file.path(path_gsw_ts, gsw_fnames_short),
file.path(path_gsw_ts, gsw_fnames_long)
))
# }
if (FALSE) {
library(mapme.biodiversity)
library(sf)
outdir <- file.path(tempdir(), "mapme-data")
dir.create(outdir, showWarnings = FALSE)
mapme_options(
outdir = outdir,
verbose = FALSE
)
aoi <- read_sf(
system.file("extdata", "shell_beach_protected_area_41057_B.gpkg",
package = "mapme.biodiversity"
))
aoi <- get_resources(aoi, get_gsw_time_series (years = 2000:2001))
aoi <- calc_indicators(aoi, calc_gsw_time_series())
aoi <- portfolio_long(aoi)
aoi
}
Run the code above in your browser using DataLab