Nothing
context("save and read RSTBX objects")
library(terra)
## Create RSTBX object
train <- readRDS(system.file("external/trainingPoints_rlogo.rds", package="RStoolbox"))
sc <- superClass(rlogo, train, tuneLength = 1, resp="class")
## Save and re-import
outbase <- paste0(tempdir(),"/test-RSTOOLBOX-sc")
saveRSTBX(sc, outbase , overwrite = TRUE)
sc_re <- readRSTBX(paste0(outbase, ".rds"))
womap <- setdiff(names(sc), "map")
test_that("export and import works",{
expect_is(sc_re, c("RStoolbox", "superClass"))
expect_equal(sc[womap], sc_re[womap])
expect_equal(values(sc_re$map), values(sc$map))
})
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.