Function to read a directory of yearly CSV files in the DELTA format
read_delta_yearly_dir.Rd
This function reads yearly data formatted as required by the DELTA tool,
structured across multiple files. This format is only supported for
monitoring data. Data structured in a single file can
alternatively be imported using read_delta_yearly_file()
.
Arguments
- path
A path to a directory of delimited files, formatted as requested by the DELTA tool.
- delim
The delimited used to separate columns in the input files. The default,
;
, is prescribed by the DELTA tool.- pattern
Passed to
dir()
to identify relevant files inpath
. Also used to clean the file names to attach site names to the data frames.
Value
a tibble
See also
Other delta reading functions:
read_delta_config()
,
read_delta_data_cdf()
,
read_delta_data_delim()
,
read_delta_resource()
,
read_delta_yearly_file()