2.8. cpforager.GPS_TDR_Collection

class cpforager.GPS_TDR_Collection(gps_tdr_collection)

Bases: object

A class to represent a list of GPS_TDR data of a central-place foraging seabird.

__init__(gps_tdr_collection)

Constructor of a GPS_TDR_Collection object.

Parameters:

gps_tdr_collection (list[cpforager.GPS_TDR]) – the list of GPS_TDR.

Variables:
  • gps_tdr_collection (list[cpforager.GPS_TDR]) – the list of GPS_TDR.

  • n_gps_tdr (int) – the total number of GPS_TDR included in the list.

  • n_trips (int) – the number of trips summed over every GPS_TDR included in the list.

  • trip_statistics_all (pandas.DataFrame) – the trip statistics dataframe merged over every GPS_TDR included in the list.

  • n_dives (int) – the number of dives summed over every GPS_TDR included in the list.

  • dive_statistics_all (pandas.DataFrame) – the dive statistics dataframe merged over every GPS_TDR included in the list.

  • df_all (pandas.DataFrame) – the enhanced GPS_TDR dataframe merged over every GPS_TDR included in the list.

2.8.1. Methods

cpforager.GPS_TDR_Collection.display_data_summary([...])

Print in terminal the GPS_TDR_Collection data summary.

cpforager.GPS_TDR_Collection.folium_map(...)

Produce the html map with every GPS_TDR data colored randomly.

cpforager.GPS_TDR_Collection.indiv_depth_all(...)

Produce the individual depth plot of every GPS_TDR in collection.

cpforager.GPS_TDR_Collection.indiv_map_all(...)

Produce the individual map of every GPS_TDR in collection.

cpforager.GPS_TDR_Collection.maps_diag(...)

Produce the maps with every GPS_TDR data.

cpforager.GPS_TDR_Collection.plot_dive_stats_summary(...)

Produce the dive statistics summary of every GPS_TDR data.

cpforager.GPS_TDR_Collection.plot_trip_stats_summary(...)

Produce the trip statistics summary of every GPS_TDR data.