Find additional species
wt_additional_species.Rd
Check for species reported by BirdNET that the human listeners did not detect in our project.
Usage
wt_additional_species(
data,
remove_species = TRUE,
threshold = 50,
resolution = "task",
format_to_tags = FALSE,
output = NULL
)
Arguments
- data
Output from the
wt_download_report()
function when you request themain
andbirdnet
reports- remove_species
Logical; indicates whether species that are not allowed in the WildTrax project should be removed from the BirdNET report
- threshold
Numeric; the desired score threshold
- resolution
Character; either "recording" to identify any new species for each recording or "location" to identify new species for each location
Logical; when TRUE, creates a formatted output to turn detections into tags for uploading to WildTrax
- output
Character; when a valid directory is entered, exports the additional detections as tags for sync with a WildTrax project
Value
A tibble with the same fields as the birdnet
report with the highest scoring detection for each new species detection in each recording.
Examples
if (FALSE) { # \dontrun{
data <- wt_download_report(project_id = 1144, sensor_id = "ARU",
reports = c("main", "birdnet"), weather_cols = FALSE)
new <- wt_additional_species(data, remove_species = TRUE,
threshold = 80, resolution="location")
} # }