create_data/section/create_section.R

library(oce)
## next worked 2017-02-20
## download.file("https://cchdo.ucsd.edu/data/7872/a03_hy1.csv", "a03_hy1.csv")
source("~/git/oce/R/section.R")
section <- read.section("a03_hy1.csv", sectionId="a03", institute="SIO",
    ship="R/V Professor Multanovskiy", scientist="Vladimir Tereschenkov")
section <- initializeFlagScheme(section, "WHP bottle")
str(section@data$station[[100]]@metadata$stn)
summary(section)

## Save in version 2, because otherwise users with R 3.5.x and earlier will not
## be able to use data("section")
if (utils::compareVersion(paste0(R.Version()$major, ".", R.Version()$minor), '3.6.0') >= 0) {
    message("saving with version=2 since R version is 3.6.0 or later")
    save(section, file="section.rda", version=2)
    tools::resaveRdaFiles('section.rda', version=2)
} else {
    save(section, file="section.rda")
    tools::resaveRdaFiles('section.rda')
}
dankelley/oce documentation built on May 8, 2024, 10:46 p.m.