Learn R Programming

sits (version 0.10.0)

sits_kalman: Kalman filter

Description

A simple Kalman filter implementation.

Usage

sits_kalman(data = NULL, bands_suffix = "kf")

Arguments

data

A sits tibble containing the original time series.

bands_suffix

The suffix to be appended to the smoothed filters.

Value

A tibble with smoothed sits time series.

Examples

Run this code
# NOT RUN {
# Read a set of samples
# Select the NDVI band of a point in Mato Grosso
point_kf <- sits_kalman(point_ndvi)
# Merge the filtered with the raw data
point2.tb <- sits_merge(point_ndvi, point_kf)
# Plot the result
plot(point2.tb)
# }

Run the code above in your browser using DataLab