read.sealevel {oce} | R Documentation |
Read a data file holding sea level data. BUG: the time vector assumes GMT, regardless of the GMT.offset value.
read.sealevel(file,debug=FALSE)
file |
A connection or a character string giving the name of the file to load. |
debug |
Set to TRUE to get debugging information during processing. |
See sealevel for details of the data format.
A sealevel
object containing
header |
The header line (helpful if detail extraction failed) |
n |
Number of data values |
hour |
Times [h] |
time |
Time [POSIXct] |
eta |
Sea level [m] |
Dan Kelley Dan.Kelley@Dal.Ca
ftp://ilikai.soest.hawaii.edu/rqds/hourly.fmt.
summary.sealevel
summarizes the information, while
plot.sealevel
plots it.
## Not run: library(oce) h <- read.sealevel("ftp://ilikai.soest.hawaii.edu/rqds/pacific/monthly/m652a.dat") summary(h) plot(h) ## End(Not run)