-
Notifications
You must be signed in to change notification settings - Fork 46
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
feat: provider groups #1071
Merged
Merged
feat: provider groups #1071
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 tasks
Code Coverage (Ubuntu)
Diff against develop
Results for commit: 6345230 Minimum allowed coverage is ♻️ This comment has been updated with latest results |
Code Coverage (Windows)
Diff against develop
Results for commit: 6345230 Minimum allowed coverage is ♻️ This comment has been updated with latest results |
alambare
requested review from
sbrunato and
jlahovnik
and removed request for
jlahovnik
March 22, 2024 14:51
alambare
force-pushed
the
feat/providers-group-2
branch
from
March 26, 2024 20:58
8eb6aa0
to
aed086d
Compare
alambare
force-pushed
the
feat/providers-group-2
branch
from
May 22, 2024 15:18
6f9254c
to
3efb3d5
Compare
alambare
force-pushed
the
feat/providers-group-2
branch
from
May 23, 2024 08:42
3efb3d5
to
2c47142
Compare
sbrunato
requested changes
May 24, 2024
sbrunato
requested changes
May 24, 2024
sbrunato
force-pushed
the
feat/providers-group-2
branch
from
May 24, 2024 13:59
2c47142
to
ff5b54f
Compare
sbrunato
approved these changes
May 24, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
in EODAG library:
by_group
option oncore.available_providers
. If set, we return the unique list of groups instead of the list of provider names.list_product_types
to accept group name as provider names. Callinglist_product_types
with a group name set in the provider name will return the union of product types from all the providers of this group.get_search_plugin
to accept group names as provider names. Callingget_search_plugin
with a group name as provider name will yield all the plugins belonging to the group.in EODAG server:
Example:
I have 2 provider configuration in EODAG:
I configure both with
group
earth_search.When I
list the product types
for provider earth_search, EODAG return the merged list of product types from earth_search and earth_search_cog.In server mode, the returned product types display earth_search as provider name.
When I
search
for products with provider earth_search, EDOAG search on both provider using the existing fallback mechanism.When I ask for
queryables
with provider earth_search the response is the intersect of queryables from earth_search and earth_search_cog.available_providers
returns only one entry for both: earth_search.