Create a merged timeseries using of any number of pat objects for a single sensor. If pat objects are non-contiguous, the resulting pat will have gaps.

pat_join(...)

Arguments

...

Any number of valid PurpleAir Time series pat objects.

Value

A PurpleAir Time series pat object.

Note

An error is generated if the incoming pat objects have non-identical metadata.

Examples

library(AirSensor)

jul02_03 <- 
  example_pat %>%
  pat_filterDate(20220702, 22020703)

jul05_06 <- 
  example_pat %>% 
  pat_filterDate(20220705, 22020706)
  
pat_join(jul02_03, jul05_06) %>%
  pat_multiPlot(plottype = "pm25")