dayTemp {meteor} | R Documentation |
Estimate the temperature during the day
Description
Estimate the mean temperature during the day (between sunrise and sunset) from daily minimum and maximum temperature.
The function requires the day of the year and latitude to compute the photoperiod.
Usage
dayTemp(tmin, tmax, doy, latitude)
Arguments
tmin |
numeric. minimum temperature (any unit) |
tmax |
numeric. maximum temperature (any unit) |
doy |
integer. Day of the year (between 1 and 365) |
latitude |
numeric. Latitude |
Value
numeric
Examples
dayTemp(c(20,22), c(28,34), c(150,151), 52)
[Package meteor version 0.4-5 Index]