-
Notifications
You must be signed in to change notification settings - Fork 105
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactored conformance classes for extensions (#790)
* refactored conformance classes for extensions * update changelog
- Loading branch information
1 parent
62ba40c
commit 2fbcfc0
Showing
17 changed files
with
391 additions
and
120 deletions.
There are no files selected for viewing
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
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
4 changes: 2 additions & 2 deletions
4
stac_fastapi/extensions/stac_fastapi/extensions/core/aggregation/__init__.py
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
"""Aggregation extension module.""" | ||
|
||
from .aggregation import AggregationExtension | ||
from .aggregation import AggregationConformanceClasses, AggregationExtension | ||
|
||
__all__ = ["AggregationExtension"] | ||
__all__ = ["AggregationExtension", "AggregationConformanceClasses"] |
4 changes: 2 additions & 2 deletions
4
stac_fastapi/extensions/stac_fastapi/extensions/core/collection_search/__init__.py
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
"""Collection-Search extension module.""" | ||
|
||
from .collection_search import ( | ||
CollectionSearchConformanceClasses, | ||
CollectionSearchExtension, | ||
CollectionSearchPostExtension, | ||
ConformanceClasses, | ||
) | ||
|
||
__all__ = [ | ||
"CollectionSearchExtension", | ||
"CollectionSearchPostExtension", | ||
"ConformanceClasses", | ||
"CollectionSearchConformanceClasses", | ||
] |
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
4 changes: 2 additions & 2 deletions
4
stac_fastapi/extensions/stac_fastapi/extensions/core/fields/__init__.py
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
"""Fields extension module.""" | ||
|
||
from .fields import FieldsExtension | ||
from .fields import FieldsConformanceClasses, FieldsExtension | ||
|
||
__all__ = ["FieldsExtension"] | ||
__all__ = ["FieldsExtension", "FieldsConformanceClasses"] |
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
16 changes: 14 additions & 2 deletions
16
stac_fastapi/extensions/stac_fastapi/extensions/core/filter/__init__.py
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,17 @@ | ||
"""Filter extension module.""" | ||
|
||
from .filter import FilterExtension | ||
from .filter import ( | ||
CollectionSearchFilterExtension, | ||
FilterConformanceClasses, | ||
FilterExtension, | ||
ItemCollectionFilterExtension, | ||
SearchFilterExtension, | ||
) | ||
|
||
__all__ = ["FilterExtension"] | ||
__all__ = [ | ||
"FilterConformanceClasses", | ||
"FilterExtension", | ||
"SearchFilterExtension", | ||
"ItemCollectionFilterExtension", | ||
"CollectionSearchFilterExtension", | ||
] |
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
Oops, something went wrong.