The example_pas_raw
dataset provides a quickly loadable
version of raw Purple Air synoptic data JSON for practicing and code
examples. This dataset contains data for sensors in Washington and Oregon
and was generated on 2020-09-15 by running:
library(AirSensor)initializeMazamaSpatialUtils()
example_pas_raw <- pas_downloadParseRawData() dplyr::filter(Lon > -125.0 & Lon < -117.0 & Lat > 42.0 & Lat < 49.0)
save(example_pas_raw, file = "data/example_pas_raw.rda")
This dataset can be converted into a standard pas dataset with:
pas <- pas_enhanceData(example_pas_raw)
example_pas_raw
A tibble with 1233 rows and 32 columns of data.
example_pas