day2hour: Estimate hourly values from daily values

Description Usage Arguments Value Examples

Description

Estimate hourly temperature from daily minimum and maximum temperature, or hourly relative humidity from average relative humidity and minimum and maximum temperature.

The functions require the day of the year and latitude to compute the photoperiod.

Usage

1
2
hourlyFromDailyTemp(tmin, tmax, doy, latitude)
hourlyFromDailyRelh(relh, tmin, tmax, doy, latitude)

Arguments

tmin

numeric. minimum temperature (C)

tmax

numeric. maximum temperature (C)

relh

relative humidity (percent)

doy

integer. Day of the year (between 1–365)

latitude

numeric. Latitude

Value

matrix

Examples

1
2
hourlyFromDailyTemp(c(20,22), c(28,34), c(150,151), 52)
hourlyFromDailyRelh(80, c(20,22), c(28,34), c(150,151), 52)

meteor documentation built on May 2, 2019, 4:52 p.m.