Skip to content

Commit f6aecf3

Browse files
committed
update pr #, clean up
1 parent b9a36e4 commit f6aecf3

File tree

3 files changed

+1
-5
lines changed

3 files changed

+1
-5
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
99

1010
### Added
1111

12-
- GET `/collections` collection search free text extension ex. `/collections?q=sentinel`. [#466](https://github.com/stac-utils/stac-fastapi-elasticsearch-opensearch/pull/466)
12+
- GET `/collections` collection search free text extension ex. `/collections?q=sentinel`. [#470](https://github.com/stac-utils/stac-fastapi-elasticsearch-opensearch/pull/470)
1313
- Added `USE_DATETIME` environment variable to configure datetime search behavior in SFEOS. [#452](https://github.com/stac-utils/stac-fastapi-elasticsearch-opensearch/pull/452)
1414
- GET `/collections` collection search sort extension ex. `/collections?sortby=+id`. [#456](https://github.com/stac-utils/stac-fastapi-elasticsearch-opensearch/pull/456)
1515
- GET `/collections` collection search fields extension ex. `/collections?fields=id,title`. [#465](https://github.com/stac-utils/stac-fastapi-elasticsearch-opensearch/pull/465)

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,8 +133,6 @@ SFEOS implements extended capabilities for the `/collections` endpoint, allowing
133133

134134
These extensions make it easier to build user interfaces that display and navigate through collections efficiently.
135135

136-
> **Configuration**: Collection search extensions (sorting, field selection, and free text search) can be disabled by setting the `ENABLE_COLLECTIONS_SEARCH` environment variable to `false`. By default, these extensions are enabled.
137-
138136
> **Note**: Sorting is only available on fields that are indexed for sorting in Elasticsearch/OpenSearch. With the default mappings, you can sort on:
139137
> - `id` (keyword field)
140138
> - `extent.temporal.interval` (date field)

stac_fastapi/core/stac_fastapi/core/core.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -247,8 +247,6 @@ async def all_collections(
247247
limit = int(request.query_params.get("limit", os.getenv("STAC_ITEM_LIMIT", 10)))
248248
token = request.query_params.get("token")
249249

250-
print("q: ", q)
251-
252250
# Process fields parameter for filtering collection properties
253251
includes, excludes = set(), set()
254252
if fields and self.extension_is_enabled("FieldsExtension"):

0 commit comments

Comments
 (0)