-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Issues with auk_zerofill #79
Comments
This is a bug that can arise when some checklists in a set of shared checklists are complete and others are incomplete. You can identify the problem checklists with:
Then you can look up the first checklist at https://ebird.org/checklist/S32923769 Notice that this checklist is complete, but the other two checklists in the group are not complete https://ebird.org/checklist/S31680386 In the long term, I need to come up with a solution for this bug, but in the short term, I think the best solution is to remove the problematic observations:
|
Thanks for the quick reply and the help. This seems to work 👍 |
Dear auk Team,
First of all, thank you for providing this amazing package!
I am currently trying to zero-fill data for several EU countries, for which I download the eBird data using the Custom Download here. While my code works for most countries, some return an error message (see code example below).
The issue seems to be that the check in L162 (
# ensure all checklist in ebd are in sampling file
) fails.Would it be appropriate to remove all IDs that are not present in checklists datasets? There are two options I can think of 1) using
which(observations$checklist_id %in% checklists$checklist_id)
in the filter call applied to the observations dataset or 2) using anintersect(checklists$checklist_id, observations$checklist_id)
.Given how big the total EBD is, I would really like to use the custom download method for single countries of possible.
Created on 2024-02-08 with reprex v2.1.0
Session info:
The text was updated successfully, but these errors were encountered: