Daily mean flight path data of 4 individuals of Waved Albatross (Phoebastria irrorata) captured via GPS during the summer of 2008. Sf data frame with columns name, time, latitude, longitude, ground speed, heading, and (uncalibrated) temperature.
The full dataset at hourly resolution can be downloaded from https://github.com/BlasBenito/distantia/blob/main/data_full/albatross.rda (use the "Download raw file" button).
Usage
data(albatross)
Examples
#load as tsl
#scale al variables
#aggregate to daily resolution
#align all time series to same temporal span
tsl <- tsl_initialize(
x = albatross,
name_column = "name",
time_column = "time"
) |>
tsl_transform(
f = f_scale_local
) |>
tsl_aggregate(
new_time = "days"
)
if(interactive()){
tsl_plot(
tsl = tsl,
guide_columns = 5
)
}