correctedValues {phenex}R Documentation

Corrected Value Accessor

Description

Access to corrected values of NDVI object.

Usage

correctedValues(x)

Arguments

x

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

Value

Returns a vector containing corrected NDVI values.

Author(s)

Lange, Maximilian and Doktor, Daniel

See Also

NDVI, modelNDVI, bise, runningAvg

Examples

	# load data
	data(avhrr)

	# create NDVI object, correct and model values
	ndvi.list <- modelNDVI(ndvi.values=avhrr.ndvi/10000, year.int=1995, 
			correction="bise", method="LinIP", MARGIN=2, 
			doParallel=FALSE, slidingperiod=40)
	ndvi <- ndvi.list[[1]]

	#get modelled values
	biseValues <- correctedValues(ndvi)

[Package phenex version 1.4-5 Index]