The function priestley_taylor
computes PET by Priestley-Taylor method.
priestley_taylor(tavg, rn, elevation = NULL, pres = NULL, x = NULL)# S4 method for missing,missing,missing,missing
priestley_taylor(x)
# S4 method for Raster,Raster,ANY,ANY
priestley_taylor(tavg, rn, elevation = NULL, pres = NULL, x = NULL)
# S4 method for character,character,ANY,ANY
priestley_taylor(tavg, rn, elevation = NULL, pres = NULL, x = NULL)
RasterBrick or data.table of PET values (mm/day)
Raster* object or file path; average temperature (°C)
Raster* object or file path; net radiation (MJ m-2 day-1)
Raster* object or file path; elevation (m). Optional if `pres` is provided.
Optional. Raster* object or file path; atmospheric pressure (kPa)
A `data.table` with columns: "lon", "lat", "date", "tavg", "rn", and either "elevation" or "pres".
For Raster inputs, provide raster objects or file paths for `tavg`, `rn`, and either `elevation` or `pres`. For `data.table` input, provide a single `data.table` with columns: "lon", "lat", "date", "tavg", "rn", and either "elevation" or "pres".