-
Notifications
You must be signed in to change notification settings - Fork 3
2. Data handling
abdelkaderm edited this page Sep 9, 2014
·
5 revisions
Get mean temperature for "Oslo" station ("18700") from METNO data source
for daily,
> t2m.dly <- station.metnod(stid="18700",param="t2m")
for monthly,
> t2m.mon <- station.metnom(stid="18700",param="t2m")
Aggregate into mean annual values and plot the values
> t2m.ann <- as.annual(t2m.mon, FUN = "mean")
> plot(t2m.ann)
Add the linear trend
> lines(trend(t2m.ann),col="red",lwd=2)
s <- as.station(stid="18700",loc="Oslo-Blindern",lon="",lat="",...)
Retrieve ERAINT reanalysis
eraint <- retrieve(ncfile=")