-
Notifications
You must be signed in to change notification settings - Fork 3
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
Add verbose
in get_dep_no_obs()
#356
Comments
The So, we will get something like this at the moment using # Load dev version of camtraptor (branch version-1.0)
library(camtraptor)
# Load example dataset
x <- example_dataset()
# Filter deployments
x %>% filter_deployments(latitude > 100)
#> A Camera Trap Data Package with 3 tables:
#> • deployments: 0 rows
#> • media: 0 rows
#> • observations: 0 rows
#>
#> And 1 additional resource:
#> • individuals
#> Use `unclass()` to print the Data Package as a list. Created on 2025-01-06 with reprex v2.1.1 Notice that we get now the printed message as returned by camtrapdp R package. I think your idea of setting a verbosity control, is also a valid enhancement for camtrapdp R package as well. I will create an issue for it mentioning this one. |
As mentioned in PR #357, I think it's better to implement this at later stage after release of camtraptor 1.0. Something for camtraptor 1.1. |
Thanks for sharing the blogpost! Intresting to read and some food for thought on my side! |
From inbo/camtrapdp#152 (comment):
Conclusion: no action needs to be taken on verbosity control at the moment, since camtraptor 1.0 will rely on camtrapdp's |
Added a general issue based on the conversation here, see #358. We can close this specific one as the camtrapdp's |
When using
get_*()
andmap_dep()
with a species filter, it is expected that some of my deployements won't have any observations of this species. I find the list of deployements display unecessary and suggest to have averbose
argument to the function.The text was updated successfully, but these errors were encountered: