deseason: Create seasonal anomalies

Description Usage Arguments Value See Also Examples

Description

The function calculates anomalies of a RasterStack by supplying a suitable seasonal window. E. g. to create monthly anomalies of a raster stack of 12 layers per year, use cycle.window = 12.

Usage

1
deseason(data, cycle.window = 12, ...)

Arguments

data

a RasterStack

cycle.window

the window for the creation of the anomalies

...

currently not used

Value

a deseasoned RasterStack

See Also

anomalize, denoise

Examples

1
2
3
4
5
6
7
8
data("australiaGPCP")

aus.dsn <- deseason(australiaGPCP, 12)

opar <- par(mfrow = c(1,2))
plot(australiaGPCP[[1]], main = "original")
plot(aus.dsn[[1]], main = "deseasoned")
par(opar)

environmentalinformatics-marburg/Reot documentation built on May 16, 2019, 7:50 a.m.