Read Logger File from STS DL70
Usage
readLogger_STS_DL70(
filepath,
sep = "\t",
dec = ".",
dateformat = .defaultTimeFormat("v5"),
timeformat = .defaultTimeFormat("v1")
)
Arguments
- filepath
full path to logger file
- sep
column separator
- dec
decimal character
- dateformat
date format string
- timeformat
time format string
Examples
if (FALSE) {
# set path to example file (contained in this package)
file <- extdataFile("STS/example_STS_DLN70_H.txt")
# read the file
x <- readLogger_STS_DL70(file)
# examine the structure of the result
str(x)
}