wt_download_report | R Documentation |
Download ARU, Camera, or Point Count data from a project
wt_download_report(project_id, sensor_id, reports, weather_cols = TRUE)
project_id |
Numeric; the project ID number that you would like to download data for. Use |
sensor_id |
Character; Can either be "ARU", "CAM", or "PC". |
reports |
Character; The report type to be returned. Multiple values are accepted as a concatenated string. |
weather_cols |
Logical; Do you want to include weather information for your stations? Defaults to TRUE. |
Valid values for argument report
when sensor_id
= "CAM" currently are:
main
project
location
image_report
image_set
tag
megadetector
megaclassifier
definitions
Valid values for argument report
when sensor_id
= "ARU" currently are:
main
project
location
recording
tag
birdnet
definitions
Valid values for argument report
when sensor_id
= "PC" currently are:
main
project
location
point count
definitions
If multiple report types are requested, a list object is returned; if only one, a dataframe.
## Not run:
# Authenticate first:
wt_auth()
a_camera_project <- wt_download_report(
project_id = 397, sensor_id = "CAM", reports = c("tag", "image_set"),
weather_cols = TRUE)
an_aru_project <- wt_download_report(
project_id = 47, sensor_id = "ARU", reports = c("main", "birdnet"),
weather_cols = TRUE)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.