Skip to content
This repository has been archived by the owner on Apr 14, 2023. It is now read-only.

Latest commit

 

History

History
38 lines (28 loc) · 980 Bytes

README.md

File metadata and controls

38 lines (28 loc) · 980 Bytes

koffing

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.

Installation

You can install koffing from github with:

# install.packages("devtools")
devtools::install_github("atmoschem/koffing")

CETESB scraper

To scrape data from the CETESB qualar system, use the function scraper_cetesb().

library(koffing)

koffing::scraper_cetesb(
  parameter = 99, 
  station = 17, 
  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.