temp_geom | R Documentation |
Calculate geometrical temperature trend for mean, minimum or maximum temperature.
temp_geom(day,
fi,
variable="mean",
ab = NULL)
day |
integer; Day of the year (from 1 to 366). Single value or vector of days of the year (only if |
fi |
numeric; Latitude. Single value or vector of latitudes (only if |
variable |
character; Geometrical temperature trend calculated for mean, minimum or maximum temperature; Possible values are |
ab |
Predefined coefficients to be used instead of incorporated. |
A numerical single value or vector
with calculated geometrical temperature trend.
Milan Kilibarda kili@grf.bg.ac.rs, Aleksandar Sekulic asekulic@grf.bg.ac.rs
Kilibarda, M., T. Hengl, G. B. M. Heuvelink, B. Graeler, E. Pebesma, M. Percec Tadic, and B. Bajat (2014), Spatio-temporal interpolation of daily temperatures for global land areas at 1 km resolution, J. Geophys. Res. Atmos., 119, 2294-2313, doi:10.1002/2013JD020803.
tgeom <- temp_geom(day = 1,
fi = 45.33,
variable="mean")
tgeom_vect <- temp_geom(day = 1:365,
fi = 45.33,
variable="mean")
tgeom_vect2 <- temp_geom(day = 1,
fi = seq(35, 45, 0.5),
variable="mean")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.