Perform various QC measures on AIRSIS E-Sampler data.
The following columns of data are tested against valid ranges:
Flow
AT
RHi
ConcHr
A POSIXct datetime
column (UTC) is also added based on TimeStamp
.
airsis_ESAM_MULTIQualityControl(
tbl,
valid_Longitude = c(-180, 180),
valid_Latitude = c(-90, 90),
remove_Lon_zero = TRUE,
remove_Lat_zero = TRUE,
valid_Flow = c(1.999, 2.001),
valid_AT = c(-Inf, 150),
valid_RHi = c(-Inf, 55),
valid_Conc = c(-Inf, 5),
flagAndKeep = FALSE
)
single site tibble created by airsis_downloadData()
range of valid Longitude values
range of valid Latitude values
flag to remove rows where Longitude == 0
flag to remove rows where Latitude == 0
range of valid Flow.l.m values
range of valid AT.C. values
range of valid RHi... values
range of valid Conc.mg.m3. values
flag, rather then remove, bad data during the QC process
Cleaned up tibble of AIRSIS monitor data.