## In this example we load a gas exchange data file and determine the TDL valve
## numbers from its file name
# Read the gas exchange data
licor_data <- read_gasex_file(
PhotoGEA_example_file_path('licor_for_gm_site11.xlsx'),
)
# Get TDL valve information from Licor file name; for this TDL system, the
# reference valve is 12 when the sample valve is 11
licor_data <- get_sample_valve_from_filename(licor_data, list('11' = 12))
# View the results
licor_data[, c('obs', 'valve_number_s', 'valve_number_r')]
Run the code above in your browser using DataLab