Nothing
context("getMeta")
mtlFile <- system.file("external/landsat/LT52240631988227CUB02_MTL.txt", package="RStoolbox")
meta <- readMeta(mtlFile)
lsat_t <- stackMeta(mtlFile)
test_that("Get integer scale factors",{
## Vectors
expect_is(gm <- getMeta(lsat_t, metaData = meta, what = "SCALE_FACTOR"), "numeric")
expect_equal(length(gm), nlyr(lsat_t))
expect_is(gm <- getMeta(lsat_t, metaData = meta, what = "FILES"), "character")
expect_is(gm <- getMeta(lsat_t, metaData = meta, what = "QUANTITY"), "character")
expect_true(all(gm == "dn"))
expect_is(gm <- getMeta(lsat_t, metaData = meta, what = "CATEGORY"), "character")
expect_true(all(gm == "image"))
## Data.frames
expect_is(gm <- getMeta("B6_dn", metaData = meta, what = "CALBT"), "data.frame")
expect_is(gm <- getMeta(c("B1_dn", "B2_dn"), metaData = meta, what = "CALRAD"), "data.frame")
## Ordered?
expect_is(gm <- getMeta(lsat_t[[5:1]], metaData = meta, what = "CALRAD"), "data.frame")
expect_equal(rownames(gm), names(lsat_t[[5:1]]))
## NA
expect_error(gm <- getMeta(lsat_t, metaData = meta, what = "CALREF"), "not populated")
})
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.