pet {evapoRe} | R Documentation |
Potential Evapotranspiration
Description
The function pet
estimates PET by different methods
Usage
pet(x, method = "od")
Arguments
x |
a RasterBrick object with average temperature data. |
method |
a character string indicating the method to be used. Available options are:
|
Value
a RasterBrick object with potential evapotranspiration in [mm/day].
Examples
#Calculate PET by Oudin
tavg <- raster::brick("terraclimate_tavg_land_19580101_20221231_025_monthly.nc")
pet_oudin <- pet(tavg, method = "od")
pet_oudin <- muldpm(pet_oudin)
[Package evapoRe version 1.0.0 Index]