Skip to contents

This is a convenience function that writes to the "positions.postable" table, the main table for the position data.

Usage

writePostable(positionData)

Arguments

positionData

A list of position data to be read into the postable in the database. Usually created by loadPosdata.

Value

Data frame.

Examples

if (FALSE) { # \dontrun{
connectSeatrack(Username = "testreader", Password = "testreader")

 files<-c("posdata_FULGLA_eynhallow_2014",
          "posdata_FULGLA_eynhallow_2013",
          "posdata_FULGLA_eynhallow_2012",
          "posdata_FULGLA_eynhallow_2011",
          "posdata_FULGLA_eynhallow_2010",
          "posdata_FULGLA_eynhallow_2009",
          "posdata_FULGLA_eynhallow_2007"
          )

toImport <- loadPosdata(files)

summary(toImport)

writePostable(toImport)

} # }