satellite | R Documentation |
Method to create a Satellite object.
## S4 method for signature 'character'
satellite(x, meta, log)
## S4 method for signature 'Raster'
satellite(x, meta, log)
## S4 method for signature 'list'
satellite(x, meta, log)
x |
A vector of filenames, a (multi-layered) |
meta |
Optional metadata object (e.g. returned from
|
log |
Optionally supply a log entry. |
A Satellite object consists of three data sections: (i) a raster data section which holds the actual data values of the respective sensor bands, (ii) a metadata grid which holds meta information for each sensor band (e.g. calibration coefficients, type of sensor band etc.) and (iii) a list of log information which records the processing history of the entire dataset.
A Satellite
object.
(i) compMetaLandsat
to get more information about the
structure of the metadata component; (ii)
https://www.usgs.gov/faqs/what-naming-convention-landsat-collections-level-1-scenes?qt-news_science_products=0#qt-news_science_products
for detailed information about the naming conventions for Landsat scene
identifiers; and (iii) sortFilesLandsat
for automated
rearrangement of Landsat band files.
## 'character' input (i.e. filenames)
path <- system.file("extdata", package = "satellite")
files <- list.files(path, pattern = glob2rx("LC08*.TIF"), full.names = TRUE)
satellite(files)
## raster::RasterStack input
satellite(l8)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.