We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6cd5988 commit 80a5362Copy full SHA for 80a5362
stac_fastapi/core/stac_fastapi/core/database_logic.py
@@ -96,7 +96,13 @@ class Geometry(Protocol): # noqa
96
},
97
# Default all other strings not otherwise specified to keyword
98
{"strings": {"match_mapping_type": "string", "mapping": {"type": "keyword"}}},
99
- {"numerics": {"match_mapping_type": "long", "mapping": {"type": "double"}}},
+ {"long_to_double": {"match_mapping_type": "long", "mapping": {"type": "double"}}},
100
+ {
101
+ "double_to_double": {
102
+ "match_mapping_type": "double",
103
+ "mapping": {"type": "double"},
104
+ }
105
+ },
106
]
107
108
ES_ITEMS_MAPPINGS = {
0 commit comments