ET0_HS | R Documentation |
Calculates daily reference evapotranspiration amounts using the Hargreaves-Samani method.
ET0_HS(Ra, Tavg, Tmax, Tmin)
Ra |
A |
Tavg |
A |
Tmax |
A |
Tmin |
A |
A matrix
of 1-column with the same length as 'the input values with the
daily potential evapotranspiration values in millimetres.
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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.