-
Notifications
You must be signed in to change notification settings - Fork 177
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
Index level ep13 #1534
Index level ep13 #1534
Conversation
…ote connect_to_index to ABC, as per EP-13
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## develop-1.9 #1534 +/- ##
===============================================
+ Coverage 85.28% 85.33% +0.04%
===============================================
Files 139 140 +1
Lines 14971 15018 +47
===============================================
+ Hits 12768 12815 +47
Misses 2203 2203 ☔ View full report in Codecov by Sentry. |
supports_legacy = True | ||
supports_legacy = False | ||
# supports eo3 compatible metadata types. | ||
supports_eo3 = False |
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.
Is there a benefit to including flags that will always be set to True
?
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.
A STAC-based index driver might not support EO3?
Reason for this pull request
Changes to the
Index
andIndexDriver
APIs, as proposed in EP13.Proposed changes
New
index_class
method onIndexDriver
connect_to_index()
function is now implemented in the base class (callsfrom_config
on the class returned byindex_class
)metadata_type_from_doc()
method onIndexDriver
deprecated in favour ofindex.metadata_type.from_doc()
"supports" flags on
Index
: New flags, as per EP13, and make all flags default to False, so drivers have to explicitly declare all the flags they DO support.Tests added / passed
Fully documented, including
docs/about/whats_new.rst
for all changes