Skip to content

For Working with Hydrometerological Station Data Logger Readouts

License

Notifications You must be signed in to change notification settings

acebulsk/wxlogR

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

wxlogR

This is an R package containing functions to simplify the processing of hydrometerological station data. Current support is for Campbell Sci loggers but will eventually support FTS and HOBO loggers as well.

Installation

You can install the development version of wxlogR from GitHub with:

# install.packages("devtools")
devtools::install_github("acebulsk/wxlogR")

Example

This is a basic example of how to load the package and process a CR1000x file. The load_CS_1000 function handles column naming and datetime formatting.

library(wxlogR)
## basic example code 

met_path <- 'data/path_to_your_1000x_file.dat'

met_data <- load_CS_1000(met_path)

## example file format

example_path <- system.file('extdata', 'treefort_1000x.dat', package = 'wxlogR')

met_raw <- read.csv(example_path)

met_data <- load_CS_1000(example_path)

About

For Working with Hydrometerological Station Data Logger Readouts

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages