airsis_EBAMQualityControl: Apply Quality Control to raw AIRSIS EBAM tibble

Description Usage Arguments Value See Also

View source: R/airsis_EBAMQualityControl.R

Description

Perform various QC measures on AIRSIS EBAM data.

The following columns of data are tested against valid ranges:

A POSIXct datetime column (UTC) is also added based on Date.Time.GMT.

Usage

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
airsis_EBAMQualityControl(
  tbl,
  valid_Longitude = c(-180, 180),
  valid_Latitude = c(-90, 90),
  remove_Lon_zero = TRUE,
  remove_Lat_zero = TRUE,
  valid_Flow = c(16.7 * 0.95, 16.7 * 1.05),
  valid_AT = c(-Inf, 45),
  valid_RHi = c(-Inf, 50),
  valid_Conc = c(-Inf, 5),
  flagAndKeep = FALSE
)

Arguments

tbl

single site tibble created by airsis_parseData()

valid_Longitude

range of valid Longitude values

valid_Latitude

range of valid Latitude values

remove_Lon_zero

flag to remove rows where Longitude == 0

remove_Lat_zero

flag to remove rows where Latitude == 0

valid_Flow

range of valid Flow values

valid_AT

range of valid AT values

valid_RHi

range of valid RHi values

valid_Conc

range of valid ConcHr values

flagAndKeep

flag, rather than remove, bad data during the QC process

Value

Cleaned up tibble of AIRSIS monitor data.

See Also

airsis_qualityControl


PWFSLSmoke documentation built on Nov. 23, 2021, 5:06 p.m.