read.toa5 {readmet}R Documentation

function to read contents of a file in TOA5-format

Description

reads the contents of a Campbell Scientific table-orientad ASCII format 5 (TOA5) into a data frame, columns are named after the TOA5 vribale names

Usage

read.toa5(file)

Arguments

file

name (and path if necessary) of the file to read

Value

data.frame

Author(s)

Clemens Druee

References

Campbell Scientific CR3000 data logger manual

Examples

dat <- read.toa5(system.file("extdata", "example.dat", package="readmet"))
dat$time <- as.POSIXct(dat$TIMESTAMP)
plot (dat$time, dat$AirTC_Avg)

[Package readmet version 1.7.1 Index]