name | topic | maintainer | version | source | |
---|---|---|---|---|---|
Tracking |
Processing and Analysis of Tracking Data |
Rocío Joo, Mathieu Basille |
2023-03-07 |
This CRAN Task View (CTV) contains a list of packages useful for the processing and analysis of tracking data. If you just want to see what is new in this version of the CTV, click here. See below how to cite the Tracking CTV.
Movement of an object (both living organisms and inanimate objects) is defined as a change in its geographic location in time, so movement data can be defined by a space and a time component. Tracking data are composed by at least 2-dimensional spatial coordinates (x,y) and a time index (t), and can be seen as the geometric representation (the trajectory) of an object's path. The packages listed here, henceforth called tracking packages, are those explicitly developed to either create, transform or analyze tracking data (i.e. (x,y,t)), allowing a full workflow from raw data from tracking devices to final analytical outcome. In other words, a tracking package must have one or several functions that have tracking data as input or output. For instance, a package that would use accelerometer, gyroscope and magnetometer data to reconstruct an objects's trajectory---most likely an animal's trajectory---via dead-reckoning, thus transforming those data into an (x,y,t) format, would fit into the definition. However, a package analyzing accelerometry series to detect changes in behavior would not fit (note that there is a dedicated section at the end of this CTV for packages that deal with movement but not tracking data per se). See more on this in Joo et al. (2020).
Regarding (x,y), some packages may assume 2-D Euclidean (Cartesian) coordinates, and others may assume geographic (longitude/latitude) coordinates. We encourage the users to verify how coordinates are processed in the packages, as the consequences can be important in terms of spatial attributes (e.g. distance, speed and angles).
Besides these packages, many other packages contain functions for data
processing and analysis that could eventually be used for tracking data or
second/third degree variables obtained from tracking data; we encourage users to
check other CRAN Task Views like r view("SpatioTemporal")
, r view("Spatial")
and r view("TimeSeries")
.
This CTV was inspired on the review of tracking packages by Joo et al. (2020), as an attempt to continuously update the list of packages already described in the review. Therefore, the CTV takes a similar structure as the review:
tdir <- tempfile()
dir.create(tdir)
svg <- file.path(tdir, "workflow.svg")
download.file("https://raw.githubusercontent.com/cran-task-views/Tracking/main/img/workflow.svg", svg, quiet = TRUE)
svg <- xfun::base64_uri(svg)
unlink(tdir)
![Diagram with boxes and arrows depicting the workflow for data processing and
analysis in movement ecology. Three steps—represented by arrows in the
diagram—are identified: 1) Pre-processing, taking raw data (box on the left) as
input and leading to tracking data as output (x, y, t) (box on the center);
2) Post-processing, manipulating tracking data as both input and output;
3) Analysis, which takes tracking data as input for visualization,
track description, path reconstruction, behavioral pattern identification,
space use, trajectory simulation, and others (all of these represented by
boxes on the right).](r svg
){width="500"}\
We welcome and encourage contributions to add packages at any time. To submit a new package, please open an issue on the GitHub repository following this link.
- Pre-processing
- Post-processing
- Analysis
- Dealing with movement but not tracking data
- Technical notes
- Citing and acknowledgments
- Related links
Pre-processing is required when raw data are not in a tracking data format. The methods used for pre-processing depend heavily on the type of biologging device used. Among the tracking packages, some of them are focused on GLS (global location sensor), others on radio telemetry, accelerometry, magnetometry, or GTFS (General Transit Feed Specification) data.
- GLS data pre-processing: Several methodologies have been developed to
reduce errors in geographic locations generated from the light data, which is
reflected by the large number of packages for pre-processing GLS data. We
classified these methods in three categories: threshold, curve-fitting and
twilight-free (no package currently included):
- Threshold methods: Threshold levels of solar irradiance, which are
arbitrarily chosen, are used to identify the timing of sunrise and
sunset. The package that uses threshold methods is
r github("SWotherspoon/SGAT")
. - Curve-fitting methods: The observed light irradiance levels for each
twilight are modeled as a function of theoretical light levels (i.e. the
template). Then, parameters from the model (e.g. a slope in a linear
regression) are used to estimate the locations. The formulation of the model
and the parameters used for location estimation vary from method to
method. The packages that use curve-fitting methods are
r pkg("FLightR")
,r pkg("tripEstimation")
andr github("SWotherspoon/SGAT")
.
- Threshold methods: Threshold levels of solar irradiance, which are
arbitrarily chosen, are used to identify the timing of sunrise and
sunset. The package that uses threshold methods is
- Dead-reckoning using accelerometry and magnetometry data: The combined use
of magnetometer and accelerometer data, and optionally gyroscopes and speed
sensors, allows to reconstruct sub-second fine scale movement paths using the
dead-reckoning (DR) technique.
r pkg("TrackReconstruction")
implement DR to obtain tracks, based on different methods. - GTFS data pre-processing: Public transportation data in GTFS format per
trip and vehicle can be interpolated in space-time to obtain GPS-like records
with
r pkg("gtfs2gps")
. - Eye tracking data pre-processing: Plain-text ASC data files from Eyelink
eye trackers are imported and transformed into (x,y,t) tracking data with
r pkg("eyelinker")
.
Post-processing of tracking data comprises data cleaning (e.g. identification of outliers or errors), compressing (i.e. reducing data resolution which is sometimes called resampling) and computation of metrics based on tracking data, which are useful for posterior analyses.
- Data cleaning:
r pkg("argosfilter")
andr pkg("SDLfilter")
implement functions to filter implausible platform terminal transmitter (PTT) locations.r pkg("SDLfilter")
is also adapted to GPS data.r pkg("track2KBA")
allows splitting tracks into trips for central-place foraging species.r pkg("trip")
also provides functions for cleaning tracking data. - Data compression: Rediscretization or getting data to equal step lengths
can be achieved with
r pkg("adehabitatLT", priority = "core")
,r pkg("mousetrap")
,r pkg("trajectories")
orr pkg("trajr")
. Regular time-step interpolation can be performed usingr pkg("adehabitatLT")
,r pkg("amt")
,r pkg("mousetrap")
orr pkg("trajectories")
. Other compression methods include Douglas-Peucker (r pkg("trajectories")
) or Savitzky-Golay (r pkg("trajr")
). - Computation of metrics: Some packages automatically derive second or third
order movement variables (e.g. distance and angles between consecutive fixes)
when transforming the tracking data into the package's data class. These
packages are
r pkg("adehabitatLT")
,r pkg("momentuHMM")
,r pkg("moveHMM", priority = "core")
andr pkg("trajectories")
.r pkg("bcpa")
has a function to compute speeds, step lengths, orientations and other attributes from a track.r pkg("amt")
,r pkg("move", priority = "core")
,r pkg("segclust2d")
,r pkg("sftrack")
,r pkg("trajr")
andr pkg("trip")
also contain functions for computing those metrics, but the user needs to specify which ones they need to compute.
r pkg("anipaths")
is a package mainly developed for visualization purposes,
and more specifically, animation of tracks.
r pkg("amt")
, rpkg("mousetrap")
, r pkg("trajr")
, and r pkg("track2KBA")
compute summary metrics of tracks, such as total distance covered, straightness
index, sinuosity, trip duration, or others (depending on the package).
r pkg("trackeR")
was created to analyze running, cycling and swimming data
from GPS-tracking devices for humans. r pkg("trackeR")
computes metrics
summarizing movement effort during each track (or workout effort per session).
r pkg("sftrack")
defines two classes of objects from tracking data, tracks
(sf
points in a time sequence) and trajectories (sf
linestrings in a time
sequence) and provides functions to summarize both showing starting and ending
time, number of points, and total distance covered. r pkg("cylcop")
can fit
multivariate distributions using the method of copulae that allows for correlated
step lengths and turn angles; these distributions can later be used for
step-selection modeling.
Whether it is for the purposes of correcting for sampling errors, or obtaining
finer data resolutions or regular time steps, path reconstruction is a common
goal in movement analysis. Packages available for path reconstruction are
r pkg("adehabitatLT")
,
r pkg("bsam")
, r pkg("crawl")
, r pkg("ctmm")
, r pkg("ctmcmove")
,
r pkg("mousetrap")
and r pkg("TrackReconstruction")
.
Another common goal in movement ecology is to get a proxy of the individual's behavior through the observed movement patterns, based on either the locations themselves or second/third order variables such as distance, speed or turning angles. Covariates, mainly related to the environment, are frequently used for behavioral pattern identification.
We classify the methods in this section as: 1) non-sequential classification or clustering techniques, 2) segmentation methods and 3) hidden Markov models.
- Non-sequential classification or clustering techniques: Here each fix in
the track is classified as a given type of behavior, independently of the
classification of the preceding or following fixes (i.e. independently of the
temporal sequence). The packages implementing these techniques are
r pkg("EMbC")
andr pkg("m2b")
. - Segmentation methods: They identify change in behavior in time series of
movement patterns to cut them into several segments. The packages implementing
these techniques are
r pkg("adehabitatLT")
,r pkg("bcpa")
,r pkg("bayesmove")
,r pkg("segclust2d")
andr pkg("marcher")
. - Hidden Markov models: They are centered upon a hidden state Markovian
process (representing the sequence of non-observed behaviors) that conditions
the observed movement patterns. The packages implementing these methods are
r pkg("bsam")
,r pkg("moveHMM")
andr pkg("momentuHMM")
.
Multiple packages implement functions to help answer questions related to where individuals spend their time and what role environmental conditions play in movement or space-use decisions, which are typically split into two categories: home range calculation and habitat selection.
- Home ranges: Several packages allow the estimation of home ranges, such as
r pkg("adehabitatHR", priority = "core")
,r pkg("amt")
,r pkg("ctmm")
,r pkg("move")
, andr pkg("track2KBA")
. They provide a variety of methods, from simple Minimum convex polygons to more complex probabilistic Utilization distributions, potentially accounting for the temporal autocorrelation in tracking data. - Habitat use: Several packages estimate the role of habitat features on
animal space use or habitat selection, such as
r pkg("amt")
using step selection functions andr pkg("ctmcmove")
using functional movement modeling,. - Non-conventional approaches for space use: Other non-conventional
approaches for investigating space use from tracking data can be found in
r pkg("recurse")
.
Tracking packages implementing trajectory simulation are mainly based on Hidden
Markov models, correlated random walks, Brownian motions, Lévy walks or
Ornstein-Uhlenbeck processes: r pkg("adehabitatLT")
,
r pkg("bsam")
, r pkg("crawl")
,
r pkg("ctmm")
, r pkg("momentuHMM")
, r pkg("moveHMM")
, r pkg("smam")
,
r pkg("SiMRiv")
and r pkg("trajr")
.
- Interactions: Interactions between individuals can be assessed using
metrics from
r pkg("wildlifeDI")
.r pkg("spatsoc")
groups relocations within a same time-period or a same spatial range, and allows computing distances between individuals in the group and identifying nearest neighbors. - Movement similarity: Measures such as the longest common subsequence,
Fréchet distance, edit distance and dynamic time warping could be computed
with
r pkg("SimilarityMeasures")
orr pkg("trajectories")
.r pkg("mousetrap")
includes functions to cluster trajectories. - Population size:
r pkg("caribou")
was specifically created to estimate population size from Caribou tracking data, but can also be used for wildlife populations with similar home-range behavior. - Environmental conditions:
r pkg("moveWindSpeed")
uses tracking data to infer wind speed.r pkg("rerddapXtracto")
allows extracting environmental data served on any ERDDAP server along a given track.
- Analysis of biologging data: Packages to analyze time-depth recorder (TDR)
and accelerometer data from animals is
r pkg("diveMove")
. It allows obtaining statistics of dive effort. Several packages focus on the analysis of human accelerometry data, mainly to describe periodicity and levels of activity:r pkg("acc")
,r pkg("accelerometry")
,r pkg("GGIR")
,r pkg("nparACT")
,r pkg("pawacc")
andr pkg("PhysicalActivity")
. - Non-biologging data: When a camera can encompass an area large
enough for an individual to move in, video and images can be used to record
movement. A package related to these data is
r pkg("trackdem")
(for processing frame-by-frame images). Another example of a non-biologging but movement package isr pkg("actel")
which deals with data from acoustic telemetry stations. It allows exploring time spend in each array, getting time series of transitions between arrays, among others.r github("KiranLDA/migflow")
, on the other hand, allows using a series of distances traveled and positions (lon, lat) of sites to calculate the maximum flow of animals through a migratory network.
The packages included in the Tracking CTV are mainly from CRAN and a few of them
are from other repositories. Upon submission, packages from CRAN and
Bioconductor are automatically accepted in the Tracking CTV if they fit the
scope (see above), as they already passed tests from R CMD check
. Packages
that are not from CRAN/Bioconductor are only included after they are tested and
pass the check tests (more details
here).
Once in a while, maintainers of the Tracking CTV release a checked version, which is a major update the CTV, with full tests run on every non-CRAN/non-Bioconductor packages. Packages that fail the tests are also removed on this occasion
Core packages are defined as the group of tracking packages with the highest
number of mentions (Depends
, Imports
, Suggests
) from other tracking
packages; the cutpoint is estimated using the maxstat_test
function in the
coin
package.
Last checked version on: r readLines("https://raw.githubusercontent.com/cran-task-views/Tracking/main/LAST_RUN")
If you would like to cite this CTV, we suggest mentioning: maintainers, year, title of the CTV, version, and URL. For instance:
Joo and Basille (2023) CRAN Task View: Processing and Analysis of Tracking Data. Version 2023-06-19). URL: https://CRAN.R-project.org/view=Tracking
Besides the maintainers, the following people contributed to the creation of this task view: Achim Zeileis, Edzer Pebesma, Michael Sumner, Matthew E. Boone (former CTV maintainer).
Early work resulting in the article at the base of this Task View, and thus the initial list of Tracking packages, was partially funded by a Human Frontier Science Program Young Investigator Grant (SeabirdSound - RGY0072/2017; R. Joo and M. Basille).