Dispatch function to get time series from data cubes and cloud services
.sits_get_ts(
cube,
samples,
...,
bands = NULL,
impute_fn,
multicores,
output_dir,
progress
)# S3 method for raster_cube
.sits_get_ts(
cube,
samples,
...,
bands,
crs = 4326,
impute_fn,
multicores,
output_dir,
progress
)
A tibble with a set of time series retrieved from a data cube.
Data cube from where data is to be retrieved.
Samples to be retrieved.
Bands to be retrieved (optional).
Imputation function for NA values.
Number of threads to process the time series.
A logical value indicating if a progress bar
should be shown. Default is FALSE
.
A coordinate reference system of samples. The provided crs could be a character (e.g, "EPSG:4326" or "WGS84" or a proj4string), or a a numeric with the EPSG code (e.g. 4326). This parameter only works for 'csv' or data.frame' samples. Default is 4326.
Gilberto Camara