Daily mean flight path data of 5 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.
Usage
data(albatross)
See also
Other example_data:
cities_coordinates
,
cities_temperature
,
covid_coordinates
,
covid_prevalence
,
eemian_coordinates
,
eemian_pollen
,
fagus_coordinates
,
fagus_dynamics
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
) |>
tsl_aggregate(
new_time = "days"
)
if(interactive()){
tsl_plot(
tsl = tsl,
guide_columns = 5
)
}