-
Notifications
You must be signed in to change notification settings - Fork 51
Adding support for installations #788 #792
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
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR adds support for installation-related functionality to the rgbif package, allowing users to search for installations and retrieve installation metadata using installation UUIDs. The implementation follows the existing package patterns for similar GBIF API endpoints.
- Adds installation search functionality with filtering options
- Implements installation metadata retrieval functions for various endpoints
- Includes comprehensive test coverage with VCR cassettes for API responses
Reviewed Changes
Copilot reviewed 10 out of 14 changed files in this pull request and generated 6 comments.
Show a summary per file
File | Description |
---|---|
R/installation_search.R | New function for searching installations with various filter parameters |
R/intallation_uuid_funs.R | New functions for retrieving installation metadata by UUID |
tests/testthat/test-installation_search.R | Test suite for installation search functionality |
tests/testthat/test-installation_uuid_funs.R | Test suite for installation UUID functions |
tests/fixtures/*.yml | VCR cassettes containing recorded API responses for tests |
man/*.Rd | Documentation files for the new functions |
NAMESPACE | Export declarations for new functions |
DESCRIPTION | Version bump |
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
#788