PhenopixMY {greenbrown} | R Documentation |
This function takes a multi-year time series and applies curve fitting and phenology extraction functions based on the greenProcess
function in the phenopix
package. The function returns an object of class PhenopixMY
(phenopix multi-year) which contains a list of phenopix
objects. PhenopixMY
can be plotted using plot.PhenopixMY
.
PhenopixMY(ts, fit, threshold = NULL, plot = FALSE, ...)
ts |
a time series of class 'ts' or 'zoo' with multiple years of data |
fit |
fitting function to be applied, available options are: spline, beck, elmore, klosterman, gu (see |
threshold |
threshold to be applied to compute phenology metrics, available options are: trs, derivatives, klosterman, gu (see |
plot |
plot phenopix object of each year, using |
... |
further arguments as in |
An object of class phenopixmy
with dedicated functions: plot(), print(). The structure is actually a list.
Matthias Forkel <matthias.forkel@geo.tuwien.ac.at> [aut, cre]
Filippa, G., Cremonese, E., Migliavacca, M., Galvagno, M., Forkel, M., Wingate, L., Tomelleri, E., Morra di Cella, U. and Richardson, A. D.: Phenopix: A R package for image-based vegetation phenology, Agricultural and Forest Meteorology, 220, 141-150, doi:10.1016/j.agrformet.2016.01.006, 2016.
greenProcess
, plot.PhenopixMY
, Phenology
data(ndvi) plot(ndvi) ppixmy <- PhenopixMY(ndvi, "spline", "trs") plot(ppixmy) plot(ppixmy, type="metrics")