powered by
Calculates daily reference evapotranspiration amounts using the Hargreaves-Samani method.
ET0_HS(Ra, Tavg, Tmax, Tmin)
A matrix of 1-column with the same length as `the input values with the daily potential evapotranspiration values in millimetres.
matrix
A vector, 1-column matrix or data.frame with extraterrestrial solar radiation in MJ m-2 day-1.
vector
data.frame
A vector, 1-column matrix or data.frame column with daily average air temperature.
A vector, 1-column matrix or data.frame with daily maximum air temperature in Celsius degrees.
A vector, 1-column matrix or data.frame with daily minimum air temperature in Celsius degrees.
ET0_PM() ET0_PT()
ET0_PM()
ET0_PT()
# See `?DataForCWB` for more on this data set Tavg <- DataForCWB[, 2] Tmax <- DataForCWB[, 3] Tmin <- DataForCWB[, 4] Ra <- DataForCWB[, 5] ET0_HS(Ra = Ra, Tavg = Tavg, Tmax = Tmax, Tmin = Tmin)
Run the code above in your browser using DataLab