ReadOBSEvaporations {Evapotranspiration} | R Documentation |
Read Raw Data of Observed Evaporation from file
Description
Load raw date and evaporation data and then compile data list of daily time step.
Usage
ReadOBSEvaporation(E_OBS, data)
Arguments
E_OBS |
A list of evaporation data named |
data |
A list of data named |
Value
This function returns a list with all components of class zoo
which have been processed from the raw data, including:
Date.OBS |
A |
E_obs.Daily |
A |
E_obs.Monthly |
A |
E_obs.Annual |
A |
E_obs.MonthlyAve |
A |
E_obs.AnnualAve |
A |
Note that the components might have value of NULL
when the corresponding raw data cannot be found in E_OBS
.
Author(s)
Danlu Guo
Examples
# Get the time period from "data"
# Use processed existing data set from kent Town, Adelaide
data("processeddata")
data("constants")
# Reading obsevations of evaporation within specified time period
data("E_OBS")
OBS <- ReadOBSEvaporation(E_OBS, processeddata)