Functions that provide respeciate
source information.
rsp_find_profile searches the currently installed respeciate
data sets for profile records.
rsp_find species searches the currently installed respeciate
data sets for species records.
rsp_find_profile(
...,
by = "keywords",
partial = TRUE,
source = "all",
ref = NULL
)
rsp_profile_info(...)
rsp_find_species(
...,
by = ".species",
partial = TRUE,
source = "all",
ref = NULL
)
rsp_species_info(...)character(s), any search term(s) to use when searching
the local respeciate archive for relevant records using
rsp_find_profile or rsp_find_species.
character, the section of the archive to
search, by default 'keywords' for rsp_find_profile and
'.species' for sp_find_species.
logical, if TRUE (default)
rsp_find_profile and rsp_find_species use partial matching.
character, the data set to search: 'us'
US EPA SPECIATE; 'eu' JRC SPECIEUROPE; or, 'all' (default)
both archives.
any respeciate object, data.frame or similar
that profile or species information can be extracted from.
rsp_profile_info returns a data.frame of
profile information, as a respeciate object.
rsp_species_info returns a data.frame of
species information as a respeciate object.
For SPECIATE:
Simon, H., Beck, L., Bhave, P.V., Divita, F., Hsu, Y., Luecken, D., Mobley, J.D., Pouliot, G.A., Reff, A., Sarwar, G. and Strum, M., 2010. The development and uses of EPA SPECIATE database. Atmospheric Pollution Research, 1(4), pp.196-206.
For SPECIEUROPE:
Pernigotti, D., Belis, C.A., Spano, L., 2016. SPECIEUROPE: The European data base for PM source profiles. Atmospheric Pollution Research, 7(2), pp.307-314. DOI: https://doi.org/10.1016/j.apr.2015.10.007
SPECIATE and SPECIEUROPE
if (FALSE) { # \dontrun{
profile <- "Ethanol"
pr <- rsp_find_profile(profile)
pr
species <- "Ethanol"
sp <- rsp_find_species(species)
sp} # }