sits_merge: Merge two satellite image time series

Description Usage Arguments Value Author(s) Examples

Description

This function merges the time series of two sits tibbles. To merge two series, we consider that they contain different attributes but refer to the same data cube, and spatio-temporal location. This function is useful to merge different bands of the same locations. For example, one may want to put the raw and smoothed bands for the same set of locations in the same tibble.

Usage

1
sits_merge(data1.tb, data2.tb)

Arguments

data1.tb

The first sits tibble to be merged.

data2.tb

The second sits tibble to be merged.

Value

A merged sits tibble with a nested set of time series.

Author(s)

Gilberto Camara, gilberto.camara@inpe.br

Examples

1
2
3
4
5
6
#' # Retrieve a time series with values of NDVI
data(point_ndvi)
# Filter the point using the whittaker smoother
point_ws.tb <- sits_whittaker(point_ndvi, lambda = 3.0)
# Plot the two points to see the smoothing effect
plot(sits_merge(point_ndvi, point_ws.tb))

e-sensing/sits.data documentation built on Dec. 26, 2019, 11:02 p.m.