6 Sattagutils
I’ve put together some of the functions I use most often into an R package. It isn’t on CRAN but you can get it from github. Perhaps the most useful functionality of sattagutils
is that it’ll load a single tag or a directory of tags into R automatically dealing with all of the irregularities and inconsistencies in file and date formats. I’ve also included a handful of plotting and other tools that I tend to use a lot when I’m browsing tags.
Most of the functions are especially geared toward either SPOT or SPLASH10 tags, but could conceivable be extended for other purposes.
Skip to the Quick guide if you don’t care about the guts of the package.
6.1 Central concepts
6.1.1 S4
Tag data streams are essentially tables with some metadata attached to them. I thought of tags as lists of data.frames with some additional metadata attached to them.
In the end I settled on S4 classes to represent tag and data objects. I know some people hate them, but in the end it seemed like the most sensible thing to do. I couldn’t get the seamless functionality that I wanted out of S3. Similarly, the other OO systems in R would’ve gotten in the way, I think. For most operations I wanted tables to behave just like tables.
6.1.2 es4dataframe
All of the various sattag data streams inherit es4dataframe
:
and a constructor:
es4dataframe <- function(..., stringsAsFactors = FALSE) {
data <- data.frame(..., stringsAsFactors = stringsAsFactors)
new("es4dataframe", data)
}
I implemented only the most basic functionality that I needed including as.data.frame
, is.es4dataframe
, $
, [
, [<-
, and merge
although I kind of regret that last one.
Most are fairly simple and just pass the buck to the underlying data.frame
. For example:
6.2 Quick guide
Install:
Now we can load a couple of tags into a tagstack and take a peek.
## tagstack of 2 tags
## -----
## 01 - 102465 - ExampleTag001 - 14 streams
## 02 - 77246 - ExampleTag002 - 14 streams
So we’ve loaded 2 tags and we can see they both have 14 streams that were imported. We can look inside as if this was any other kind of list. Though, for many analyses we’d probably just want to start pulling out streams of interest from all the tags at this point.
## sattag type: Mk10-A
## species: Cuvier's
## deploy id: ExampleTag001
## ptt: 102465
## start data date: 2014-05-13
## end data date: 2014-07-12
## ------
## streams:
## 01 - 102465-All.csv
## 02 - 102465-Argos.csv
## 03 - 102465-Behavior.csv
## 04 - 102465-Corrupt.csv
## 05 - 102465-Histos.csv
## 06 - 102465-Labels.csv
## 07 - 102465-Locations.csv
## 08 - 102465-MinMaxDepth.csv
## 09 - 102465-RawArgos.csv
## 10 - 102465-RTC.csv
## 11 - 102465-Series.csv
## 12 - 102465-SeriesRange.csv
## 13 - 102465-Status.csv
## 14 - 102465-Summary.csv
## ------
## loaded from: examples/tags//102465
## loaded on: 2025-02-18 22:23:01.56985
Here you can see a listing of all the streams in a particular tag, and we can take a closer look at the behavior table.
## What Start End DepthMax
## 1 Message 1399992480 1400001640 NA
## 2 Dive 1399992480 1399993560 387
## 3 Surface 1399993560 1399993650 NA
## 4 Dive 1399993650 1399994288 347
## 5 Surface 1399994288 1399994460 NA
## 6 Dive 1399994460 1399998942 1087
## ------
## stream type: behavior
## filename: 102465-Behavior.csv
All of the times have been converted to datenums for calculations, but can be converted back for human readability with sattagutils::num2date
.