hourly_temp: Calculate Hourly temperature for any hour of the day

View source: R/hourly_temps.R

hourly_tempR Documentation

Calculate Hourly temperature for any hour of the day

Description

Calculate Hourly temperature for any hour of the day

Usage

hourly_temp(
  hour,
  tmin,
  tmax,
  tmin_prev,
  tmax_prev,
  tmin_next,
  sunrise,
  sunset,
  sunrise_prev,
  sunset_prev,
  sunrise_next
)

Arguments

hour

hour of day

tmin

minimum temperature of day

tmax

maximum temperature of day

tmin_prev

minimum temperature of previous day

tmax_prev

maximum temperature of previous day

tmin_next

minimum temperature of next day

sunrise

hour of sunrise

sunset

hour of sunset

sunrise_prev

hour of sunrise for the previous day

sunset_prev

hour of sunset for the previous day

sunrise_next

hour of sunrise for the next day

Value

temperature at hour

Examples

hourly_temp(0:23, 5, 20, 5, 20, 5, 8, 18, 8, 18, 8)

pruettm/agclimtools documentation built on Aug. 8, 2022, 10:21 a.m.