readObsFile: Reads a CRHM obs fileinto a dataframe

View source: R/readObsFile.R

readObsFileR Documentation

Reads a CRHM obs fileinto a dataframe

Description

Reads a file of CRHM observation data into a CRHMr data frame. Note that because of the way that R reads in files, the variable names will have appended periods, e.g. t.1.

Usage

readObsFile(obsFile = "", timezone = "", quiet = TRUE, logfile = "")

Arguments

obsFile

Required. Name of the CRHM obs file to be read in.

timezone

Required. The name of the timezone of the data as a character string. This should be the timezone of your data, but omitting daylight savings time. Note that the timezone code is specific to your OS. To avoid problems, you should use a timezone without daylight savings time. Under Linux, you can use CST and MST for Central Standard or Mountain Standard time, respectively. Under Windows or OSX, you can use etc/GMT+6 or etc/GMT+7 for Central Standard and Mountain Standard time. DO NOT use America/Regina as the time zone, as it includes historical changes between standard and daylight savings time.

quiet

Optional. Suppresses display of messages, except for errors. If you are calling this function in an R script, you will usually leave quiet=TRUE (i.e. the default). If you are working interactively, you will probably want to set quiet=FALSE.

logfile

Optional. Name of the file to be used for logging the action. Normally not used.

Value

If successful, returns a CRHMr data frame. If unsuccessful, returns the value FALSE.

Author(s)

Kevin Shook

See Also

readExportFile readOutputFile

Examples

## Not run: 
# output example obs data to a file
BadLake7376.obs <- writeObsFile(BadLake7376, 'BadLake7376.obs')
# now read data back in
BadLake <- readObsFile('BadLake7376.obs', 'etc/GMT+6')
## End(Not run)

CentreForHydrology/CRHMr documentation built on April 6, 2024, 5:27 p.m.