rsat_preview {rsat} | R Documentation |
Preview a records
or an rtoi
object
Description
Preview a records
or an rtoi
object
Usage
rsat_preview(x, n, ...)
## S4 method for signature 'rtoi,Date'
rsat_preview(x, n, lpos = c(3, 2, 1), add.layer = FALSE, verbose = FALSE, ...)
## S4 method for signature 'rtoi,missing'
rsat_preview(x, n, lpos = c(3, 2, 1), add.layer = FALSE, verbose = FALSE, ...)
## S4 method for signature 'records,Date'
rsat_preview(
x,
n,
lpos = c(3, 2, 1),
tmp_dir = file.path(tempdir()),
add.layer = FALSE,
verbose = FALSE,
get.map = TRUE,
...
)
## S4 method for signature 'records,numeric'
rsat_preview(
x,
n,
lpos = c(3, 2, 1),
tmp_dir = file.path(tempdir()),
add.layer = FALSE,
verbose = FALSE,
get.map = TRUE,
...
)
Arguments
x |
a |
n |
the date expressed as the temporal index in the time series. |
... |
additional arguments |
lpos |
vector argument. Defines the position of the red-green-blue layers to enable a false color visualization. |
add.layer |
logical argument. If |
verbose |
logical argument. If |
tmp_dir |
character argument. The directory where preview images are located. |
get.map |
logical argument. If |
Value
nothing. Previews the region in the viewer.
Examples
## Not run:
library(rsat)
# load example rtoi
file.copy(from=system.file("ex/Navarre",package="rsat"),
to=tempdir(),
recursive = TRUE)
navarre <- read_rtoi(file.path(tempdir(),"Navarre"))
set_credentials("username", "password")
set_database(file.path(tempdir(), "DATABASE"))
# by default the first date in rtoi is previewed
rsat_preview(navarre)
preview.dates <- dates(navarre)
# use add.layer to preview images of several days
rsat_preview(navarre,preview.dates[2],add.layer = TRUE)
# you can also preview records
rcrds <- records(navarre)
rsat_preview(rcrds, n = 1)
## End(Not run)
[Package rsat version 0.1.21 Index]