albatross {distantia} | R Documentation |
Flight Path Time Series of Albatrosses in The Pacific
Description
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)
Format
data frame
References
See Also
Other example_data:
cities_coordinates
,
cities_temperature
,
covid_counties
,
covid_prevalence
,
eemian_coordinates
,
eemian_pollen
,
fagus_coordinates
,
fagus_dynamics
,
honeycomb_climate
,
honeycomb_polygons
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
)
}
[Package distantia version 2.0.2 Index]