et0: Get daily Penman-Monteith Evapotranspiration from hourly data

Description Usage Arguments Value Examples

View source: R/et0.R

Description

Get daily Penman-Monteith Evapotranspiration from hourly data

Usage

1
et0(dates, temp, hr, uz, rs, lat, elev, crop = "short", msg = "no")

Arguments

dates

POSIXct dates vector.

temp

numeric vector of temperature in Celsius scale.

hr

numeric vector of relative humidity (%).

uz

numeric vector of wind speed in m/s.

rs

numeric vector of solar irradiation in W/m2

lat

latitude.

elev

numeric elevation in mts.

crop

character "short" (default) of "tall". See ET.PenmanMonteith.

msg

character "yes" or "no". See param "message" in ET.PenmanMonteith.

Value

dataframe with columns date and et0 containing the daily Penman-Monteith Reference Evapotranspiration

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
data(meteo)
ET.PenmanMonteith::et0(
  dates = meteo$dates,
  temp  = meteo$temp,
  hr    = meteo$higro,
  uz    = meteo$anemo,
  rs    = meteo$piro,
  lat   = 38.04371,
  elev  = 313) -> et0.df
head(et0.df)

VicenteYago/ET.PenmanMonteith documentation built on Jan. 26, 2022, 11:40 p.m.