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

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()
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:
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.