RATLAS Bug no observations ?
Closed this issue · 0 comments
vincent-beauregard-ielab commented
# Get dataset and taxa records for which we will filter observations
ebird <- get_datasets(original_source = "eBird") %>%
dplyr::rename_with(~ paste0("ds.", .x))
taxa <- get_taxa(scientific_name = "Antigone canadensis") %>%
dplyr::rename_with(~ paste0("taxa.", .x))
# Filter observation request through `id_taxa` and `id_datasets` and year values
obs <- get_observations(
id_datasets = ebird$ds.id,
id_taxa = taxa$taxa.id,
year = 2018:2021)