knitr::opts_chunk$set( collapse = TRUE, comment = "#>", message = FALSE )

The goal of koffing is to assemble R functions to catch (scrape) air pollution data. koffing is from the same creator of the blog Rpollution. Newer versions of this scraper can be found here.
You can install koffing from github with:
# install.packages("devtools") devtools::install_github("atmoschem/koffing")
To scrape data from the CETESB qualar system, use the function scraper_cetesb().
library(koffing) koffing::scraper_cetesb( parameter = 17, station = 99, start = "01/01/2018", end = "31/01/2018", login = "login", password = "password" )
If you substitute the values login and password by your login and password from the Qualar system, this example will return the hourly NO concentrations from the Pinheiros station for January 2018.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.