make.section {oce}R Documentation

Bind CTD profiles together into a cross section

Description

Combine a series of CTD profiles together to create a section.

Usage

make.section(...)

Arguments

... list of CTD objects, perhaps read with read.ctd().

Details

This is still in development. Decisions need to be made about whether the stations should be decimated to the same levels, whether they should be in some spatial or temporal order, etc.

Value

A section object.

Author(s)

Dan Kelley Dan.Kelley@Dal.Ca

References

See Also

read.ctd reads CTD data.

Examples

library(oce)
data(ctd)
ctd.warmed <- ctd
ctd.warmed$data$temperature <- ctd.warmed$data$temperature + 0.5
section <- make.section(ctd, ctd.warmed)
summary(section)
plot(section, at=c(1,2), labels=c("Original","Warmed"))

[Package oce version 0.1.67 Index]