| summary.raster_cube {sits} | R Documentation | 
Summarize data cubes
Description
This is a generic function. Parameters depend on the specific type of input.
Usage
## S3 method for class 'raster_cube'
summary(object, ..., tile = NULL, date = NULL)
Arguments
object | 
 Object of classes "raster_cube".  | 
... | 
 Further specifications for summary.  | 
tile | 
 Tile to be summarized  | 
date | 
 Date to be summarized  | 
Value
A summary of the data cube.
Author(s)
Gilberto Camara, gilberto.camara@inpe.br
Felipe Souza, felipe.souza@inpe.br
Examples
if (sits_run_examples()) {
    # create a data cube from local files
    data_dir <- system.file("extdata/raster/mod13q1", package = "sits")
    cube <- sits_cube(
        source = "BDC",
        collection = "MOD13Q1-6",
        data_dir = data_dir
    )
    summary(cube)
}
[Package sits version 1.5.0 Index]