Skip to content

Commit

Permalink
Merge pull request #155 from StijnCaerts/proj_mapping
Browse files Browse the repository at this point in the history
do not index proj:geometry and proj:centroid as geo fields
jonhealy1 authored Oct 25, 2023
2 parents bd55ade + 8912e81 commit 8fc2d0d
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -20,6 +20,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

- Corrected the closing of client connections in ES index management functions [#132](https://github.com/stac-utils/stac-fastapi-elasticsearch/issues/132)
- Corrected the automatic converstion of float values to int when building Filter Clauses [#135](https://github.com/stac-utils/stac-fastapi-elasticsearch/issues/135)
- Do not index `proj:geometry` field as geo_shape [#154](https://github.com/stac-utils/stac-fastapi-elasticsearch/issues/154)
- Remove unsupported characters from Elasticsearch index names [#153](https://github.com/stac-utils/stac-fastapi-elasticsearch/issues/153)

## [v0.3.0]
Original file line number Diff line number Diff line change
@@ -87,7 +87,7 @@
{
"proj_geometry": {
"match": "proj:geometry",
"mapping": {"type": "geo_shape"},
"mapping": {"type": "object", "enabled": False},
}
},
{

0 comments on commit 8fc2d0d

Please sign in to comment.