In this vignette I want to show how easy and useful it is to use the openair package with Open AQ data.
measurementsNL <- aq_measurements(location="Amsterdam-Einsteinweg", parameter="pm25",
date_from = as.character(Sys.Date() - 100),
date_to = as.character(Sys.Date()))
# filter negative values
# and rename columns for compatibilities with openair
# I do not drop the old columns though
measurementsNL <- dplyr::mutate(measurementsNL, date=dateLocal,
pm25=value) %>%
filter(value>=0)
# for now openair functions do not work with tbl_df objects
# on MY computer
measurementsNL <- as.data.frame(measurementsNL)