The wa_monitor_500 dataset provides a set of known locations associated with Washington state air quality monitors. This dataset was generated on 2021-10-19 by running:

library(PWFSLSmoke)
library(MazamaLocationUtils)

mazama_initialize()
setLocationDataDir("./data")

monitor <- monitor_loadLatest() <!-- %>% monitor_subset(stateCodes = "WA") -->
lons <- monitor$meta$longitude
lats <- monitor$meta$latitude

table_initialize() <!-- %>% -->
  table_addLocation(
    lons, lats, 
    distanceThreshold = 500,
    elevationService = "usgs",
    addressService = "photon"
  ) <!-- %>% -->
  table_save("wa_monitors_500")
wa_monitors_500

Format

A tibble with 72 rows and 13 columns of data.

See also