Format DELTA-formatted files in a way needed by {mqor}
fmt_delta_for_mqor.Rd
This function ingests monitoring and modeling data, as well as site metadata
contained within the startup.ini
file, and returns a data.frame
in an
appropriate format for other {mqor}
functions (e.g.,
summarise_mqo_stats()
).
Usage
fmt_delta_for_mqor(
monitoring,
modeling,
startup,
data_type = c("fixed", "indicative")
)
Arguments
- monitoring
A
data.frame
imported usingread_delta_data_delim()
containing monitoring data.- modeling
One or more
data.frames
imported usingread_delta_data_delim()
orread_delta_data_cdf()
containing modeling data. Multiple objects should be provided as a list.- startup
The object returned by
read_delta_resource()
whenfile = "startup_*.ini"
- data_type
Whether to label the DELTA input data as representing
"fixed"
or"indicative"
measurements. Defaults to"fixed"
.