Overview

This BirdFlow model collection contains fitted models of bird movement trained from eBird Status and Trends (S&T) weekly distributions. They can be used with the BirdFlowR R Package to generate synthetic migration routes or to predict where birds at a known location and time are likely to be at another point in time.

eBird S&T code links to eBird information on the species.
Model links to a report on the model.


Models

Common name Model Release date Scientific name eBird S&T code Version Size (MB)
1 American Woodcock amewoo_prebreeding 2023-07-20 Scolopax minor amewoo beta 31.31
3 Blue-winged Teal buwtea_prebreeding 2023-07-20 Spatula discors buwtea beta 407.22
4 Long-billed Curlew lobcur_prebreeding 2023-07-20 Numenius americanus lobcur beta 61.23
5 Swainson’s Hawk swahaw_prebreeding 2023-07-20 Buteo swainsoni swahaw beta 93.62

Usage

library(BirdFlowR)

if(!require("remotes"))
  install.packages("remotes") 
if(!require("BirdFlowR"))
  remotes::install_github("birdflow-science/BirdFlowR")

# Set collection_url (only necessary if this isn't the default collection)
birdflow_options(collection_url = "https://birdflow-science.s3.amazonaws.com/collection/")

# Print index              
index <- load_collection_index()
print(index)

# Select a model
model <- "amewoo_prebreeding"

# Load and use the model
bf <- load_model(model)
rts <- route(bf, 5, season = "prebreeding")
plot(rts)

Learn more



Collection URL: https://birdflow-science.s3.amazonaws.com/collection/
Last updated: 2023-07-20