Learn R Programming

airnow

airnow is an R package for querying and retrieving air quality information from AirNow via the AirNow API. Current and historical readings as well as forecasts can be retrieved as tidy data frames.

Installation

You can install the stable version of airnow from CRAN:

install.packages("airnow")

If you’d like to try out the development version of airnow, you can install directly from GitHub:

# install.packages("remotes")
remotes::install_github("briandconnelly/airnow")

Creating an API Token

The AirNow API is generally free to use. The set_airnow_token() function can be used to help you create and configure your API token.

library(airnow)

set_airnow_token()

Examples

Current air quality in Seattle

The AirNow API allows you to query air conditions either by ZIP code or latitude/longitude. Here, we’ll get the current conditions in Seattle by ZIP code:

library(airnow)

get_airnow_conditions(zip = "98101")
#> # A tibble: 2 × 11
#>   date_observed hour_obs…¹ local…² repor…³ state…⁴ latit…⁵ longi…⁶ param…⁷   aqi
#>   <date>             <int> <fct>   <fct>   <fct>     <dbl>   <dbl> <fct>   <int>
#> 1 2022-10-29            17 PST     Seattl… WA         47.6   -122. O3         25
#> 2 2022-10-29            17 PST     Seattl… WA         47.6   -122. PM2.5      38
#> # … with 2 more variables: category_number <int>, category_name <fct>, and
#> #   abbreviated variable names ¹​hour_observed, ²​local_time_zone,
#> #   ³​reporting_area, ⁴​state_code, ⁵​latitude, ⁶​longitude, ⁷​parameter

Find the site with the lowest air quality near Washington state

library(airnow)
library(dplyr)
#> 
#> Attaching package: 'dplyr'
#> The following objects are masked from 'package:stats':
#> 
#>     filter, lag
#> The following objects are masked from 'package:base':
#> 
#>     intersect, setdiff, setequal, union

get_airnow_area(
  box = c(-125.394211, 45.295897, -116.736984, 49.172497),
  verbose = TRUE
) |>
  slice_max(order_by = aqi, n = 1) |>
  select(site_name, site_agency, latitude, longitude, aqi, datetime_observed)
#> # A tibble: 1 × 6
#>   site_name            site_agency     latit…¹ longi…²   aqi datetime_observed  
#>   <fct>                <fct>             <dbl>   <dbl> <int> <dttm>             
#> 1 Chehalis-Market Blvd Washington Dep…    46.7   -123.   129 2022-10-30 00:00:00
#> # … with abbreviated variable names ¹​latitude, ²​longitude

Disclaimer

This package and its author are not affiliated with AirNow or its partners. See the Data Exchange Guidelines for more details about this data set and how it should be used. Data are typically refreshed once per hour. Please be kind to this service and limit your request rate.

Copy Link

Version

Install

install.packages('airnow')

Monthly Downloads

382

Version

0.1.0

License

MIT + file LICENSE

Issues

Pull Requests

Stars

Forks

Maintainer

Brian Connelly

Last Published

October 31st, 2022

Functions in airnow (0.1.0)

aqi_color

Label AQI Values
airnow-package

airnow: Retrieve 'AirNow' Air Quality Observations and Forecasts
get_airnow_conditions

Get current air quality conditions
get_airnow_forecast

Get air quality forecast
get_airnow_area

Get air quality data for a given region
get_airnow_token

Manage AirNow API Tokens