opp_download_data | R Documentation |
This function downloads OPP tracking data from Movebank and returns a dataframe with combined tracking and reference data for all deployments.
opp_download_data(
study,
login = NULL,
start_month = NULL,
end_month = NULL,
season = NULL,
addl_cols = NULL
)
study |
List of Movebank project ids. |
login |
Stored Movebank login credentials if provided, otherwise function
will prompt users to enter credentials. If credentials were saved with |
start_month |
Earliest month (1-12) to include in output. |
end_month |
Latest month (1-12) to include in output. |
season |
Vector describing the season data can be applied to, eg. 'Breeding (Jun-Jul)' |
addl_cols |
Character vector containing comma separated list of additional Movebank columns to add to the dataset, e.g. c('argos_altitude', 'attachment_type', 'tag_readout_method') |
The function can be passed a list of movebank study IDs and will append data from all studies.
# download ANMU project data from two studies, for May only
## Not run:
my_data <- opp_download_data(study = c(1895716931, 1897273090),
login = NULL, start_month = 5, end_month = 5,
season = 'Incubation')
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.