
Compose an eLTER Data Reporting Format object
Source:R/eLTER_reporting.R
reporting_produce_data_object_v2.0.Rd
Arguments
- station
A
tibble
containing the station information. Station is an observation entity within a site or platform. Station in this respect is synonym to plot, observation location, sensor location, etc. and is defined by a location, elevation and installation height (if relevant) which is located within a given LTER site or platform.- method
A
tibble
containing the method information. Method describes the procedure to generate and manipulate the data.- data
A
tibble
containing the data. Data are defined as the sum of observation values being observed at a station/plot either by sensor, measurement device or human observation.- reference
A
tibble
containing the reference information. Reference is the listing and description of additional codes used in the data provision.- event
A
tibble
containing the event information. Event is defined as activity to observe or collect information on the ecosystem characteristic of interest.- sample_event
A
tibble
containing the sample event information. Sample event is the key observational units in environmental sciences, i.e. ecology, geosciences, biogeochemistry, and hydrobiology, and are essential to document and further analyse biological communities in laboratories (e.g., phytoplankton communities in water samples, benthic communities in sediments, etc.).- license
A
character
. It is a textual description of the conditions to use for the data.- deimsid
A
character
The DEIMS ID of the site from DEIMS-SDR website. More information about DEIMS ID in this pages: page.- data_topic
A
character
. Max 5-digit code for data topic or observation programme, e.g. METEO (Meteorology), BIODIV (Biodiversity), DEPO (deposition), GHG (Green House gas), SW (Soil water), VEG (Vegetation). The abbreviation is defined by the data provider depending on the data.- variable_group
A
character
. Optional, list of variables or variable groups contained in the data. The abbreviation is defined by the data provider depending on the data.- time_span
A
numeric
or acharacter
. Time span covered in the data. E.g. 2015, 20150302-20180415. The time span is defined by the data provider.- version
version in format "VYYYYMMDD". Data version in the format “V”YYYYMMDD. Defaults to current system date.
See also
Peterseil, Geiger et al. (2020) Field Specification for data reporting. Technical Document. TechDoc.01. EU Horizon 2020 eLTER PLUS Project, Grant agreement No. 871128 https://zenodo.org/record/6373410
Author
Alessandro Oggioni, phD oggioni.a@irea.cnr.it
Examples
if (FALSE) { # \dontrun{
## Not run:
deimsid <- "https://deims.org/8eda49e9-1f4e-4f3e-b58e-e0bb25dc32a6"
time_span <- 2015 # e.g. whole year
# time_span <- "20150302-20180415" # e.g. span between two dates
data_topic <- "VEG" # data provider defined abbreviation of "vegetation"
variable_group <- "SPECCOVER" # data provider defined abbreviation
version <- "V20220907"
data <- tibble::tribble(
~SITE_CODE, ~VARIABLE, ~TIME, ~VALUE, ~UNIT,
"https://deims.org/8eda49e9-1f4e-4f3e-b58e-e0bb25dc32a6", "TEMP", "2016-03-15", "5.5", "°C",
"https://deims.org/8eda49e9-1f4e-4f3e-b58e-e0bb25dc32a6", "PREC", "2016-03-03", "10.2", "mm",
"https://deims.org/8eda49e9-1f4e-4f3e-b58e-e0bb25dc32a6", "TEMP", "2016-02-15", "2.5", "°C",
"https://deims.org/8eda49e9-1f4e-4f3e-b58e-e0bb25dc32a6", "NH4N", "2016-03", "5.5", "mg/l",
"https://deims.org/8eda49e9-1f4e-4f3e-b58e-e0bb25dc32a6", "SO4S", "2016-03", "10.2", "mg/l",
"https://deims.org/8eda49e9-1f4e-4f3e-b58e-e0bb25dc32a6", "CA", "2016-03", "2.5", "mg/l"
)
station <- dplyr::tribble(
~SITE_CODE, ~STATION_CODE, ~STYPE, ~LAT, ~LON, ~ALTITUDE,
deimsid, "IP2", "AREA", 45.340805, 7.88887495, 265
)
method <- dplyr::tribble(
~VARIABLE, ~METH_DESCR,
"COVE_F", "Analysis of ammonium..."
)
research_object <- reporting_produce_data_object_v2.0(
station = station,
method = method,
data = data,
deimsid = deimsid,
data_topic = data_topic,
variable_group = variable_group,
time_span = time_span,
version = version
)
} # }
## End (Not run)