The id_monitor_500 dataset provides a set of known locations associated with Idaho 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 = "ID") -->
lons <- monitor$meta$longitude
lats <- monitor$meta$latitude

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

Format

A tibble with 30 rows and 13 columns of data.

See also