ffi_read_LGR915 {fluxfinder} | R Documentation |
Read a LGR 915-0011 data file
ffi_read_LGR915(file, date_format = "DMY", tz = "UTC")
file |
Filename to read, character |
date_format |
Date format, character: "MDY" (month-day-year) "DMY" (day-month-year), or "YMD" (year-month-day) |
tz |
Time zone of the file's time data, character (optional) |
The LGR 915-0011 was an Ultra-Portable Greenhouse Gas Analyzer made
by Los Gatos Research. The date in its output files can appear in different
formats, which is why the date_format
parameter is needed.
A data.frame
with the parsed data.
Some LGR 915 files can have a PGP block at the end; this is ignored.
f <- system.file("extdata/LGR-data.csv", package = "fluxfinder")
dat <- ffi_read_LGR915(f, date_format = "MDY")
dat <- ffi_read_LGR915(f, date_format = "MDY", tz = "EST") # specify time zone