detectSeasons: Season Detection

Description Usage Arguments Value Author(s) See Also Examples

Description

Detects seasons in timeseries.

Usage

1
detectSeasons(x, minValRange, ...)

Arguments

x

An object of class ‘NDVI’ containing raw NDVI values.

minValRange

Range in which to search for lowest bise value around detected season start.

...

Optional parameters passed to internal bise call.

Value

An object of class ‘NDVI’, containing “seasons”.

Author(s)

Daniel Doktor, Maximilian Lange

See Also

NDVI, seasons, bise

Examples

1
2
3
4
5
6
7
8
9
	# load data
	data(avhrr)

	# generate ndvi object
	ndvi <- new("NDVI", values=rep(avhrr.ndvi/10000,5), year=NA)

	# extract seasons
	ndvi <- detectSeasons(ndvi)
	seasons(ndvi)

Example output

[1]   26  348  713 1078 1443 1808

phenex documentation built on May 1, 2019, 10:56 p.m.

Related to detectSeasons in phenex...