knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>",
  fig.path = "man/figures/"
)

respeciate

R build
    status

respeciate gives you access to air pollutant emissions profiles in the US/EPA Speciate v5.2 and EU/JRC SPECIEUROPE v2.0 archives via R.

The installation is:

remotes::install_github("atmoschem/respeciate")

The currently packaged SPECIATE and SPECIEUROPE archives are:

library(respeciate)
# packaged archives
rsp_info()

Example

Searching the respeciate (SPECIATE + SPECIEUROPE) for a profile, e.g. using a keyword:

rsp_find_profile("cement")

Limiting the search to just SPECIEUROPE:

rsp_find_profile("cement", source="eu")

Getting the first profile in SPECIEUROPE:

prf <- rsp(1, source="eu")
prf
plot(prf)

Comparing that profile with pm profiles in (US EPA) SPECIATE:

rsp_match_profile(prf, rsp_us_pm(),  
                  output = "plot,summary", 
                  layout=c(5,2))

Notes:



atmoschem/respeciate documentation built on April 3, 2025, 4:25 p.m.