Learn R Programming

distantia (version 2.0.0)

albatross: 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)

Arguments

Format

data frame

References

tools:::Rd_expr_doi("10.5441/001/1.3hp3s250")

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

Run this code
#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
    )
}

Run the code above in your browser using DataLab