sits_reduce | R Documentation |
Apply a temporal reduction from a named expression in cube or sits tibble.
In the case of cubes, it materializes a new band in output_dir
.
The result will be a cube with only one date with the raster reduced
from the function.
sits_reduce(data, ...)
## S3 method for class 'sits'
sits_reduce(data, ...)
## S3 method for class 'raster_cube'
sits_reduce(
data,
...,
impute_fn = impute_linear(),
memsize = 4L,
multicores = 2L,
output_dir,
progress = FALSE
)
data |
Valid sits tibble or cube |
... |
Named expressions to be evaluated (see details). |
impute_fn |
Imputation function to remove NA values. |
memsize |
Memory available for classification (in GB). |
multicores |
Number of cores to be used for classification. |
output_dir |
Directory where files will be saved. |
progress |
Show progress bar? |
sits_reduce()
allows valid R expression to compute new bands.
Use R syntax to pass an expression to this function.
Besides arithmetic operators, you can use virtually any R function
that can be applied to elements of a matrix.
The provided functions must operate at line level in order to perform
temporal reduction on a pixel.
sits_reduce()
Applies a function to each row of a matrix.
In this matrix, each row represents a pixel and each column
represents a single date. We provide some operations already
implemented in the package to perform the reduce operation.
See the list of available functions below:
A sits tibble or a sits cube with new bands, produced according to the requested expression.
t_max()
: Returns the maximum value of the series.
t_min()
: Returns the minimum value of the series
t_mean()
: Returns the mean of the series.
t_median()
: Returns the median of the series.
t_sum()
: Returns the sum of all the points in the series.
t_std()
: Returns the standard deviation of the series.
t_skewness()
: Returns the skewness of the series.
t_kurtosis()
: Returns the kurtosis of the series.
t_amplitude()
: Returns the difference between the maximum and
minimum values of the cycle. A small amplitude means a stable cycle.
t_fslope()
: Returns the maximum value of the first slope of
the cycle. Indicates when the cycle presents an abrupt change in the
curve. The slope between two values relates the speed of the growth or
senescence phases
t_mse()
: Returns the average spectral energy density.
The energy of the time series is distributed by frequency.
t_fqr()
: Returns the value of the first quartile of the
series (0.25).
t_tqr()
: Returns the value of the third quartile of the
series (0.75).
t_iqr()
: Returns the interquartile range
(difference between the third and first quartiles).
The t_sum()
, t_std()
, t_skewness()
,
t_kurtosis
, t_mse
indexes generate values greater than
the limit of a two-byte integer. Therefore, we save the images
generated by these as Float-32 with no scale.
Felipe Carvalho, felipe.carvalho@inpe.br
Rolf Simoes, rolf.simoes@inpe.br
Gilberto Camara, gilberto.camara@inpe.br
if (sits_run_examples()) {
# Reduce summarization function
point2 <-
sits_select(point_mt_6bands, "NDVI") |>
sits_reduce(NDVI_MEDIAN = t_median(NDVI))
# Example of generation mean summarization from a cube
# Create a data cube from local files
data_dir <- system.file("extdata/raster/mod13q1", package = "sits")
cube <- sits_cube(
source = "BDC",
collection = "MOD13Q1-6.1",
data_dir = data_dir
)
# Reduce NDVI band with mean function
cube_mean <- sits_reduce(
data = cube,
NDVIMEAN = t_mean(NDVI),
output_dir = tempdir()
)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.