如何找到存储在弹性索引中的多边形。简单Map:
PUT /regions
{
"mappings": {
"properties": {
"location": {
"type": "geo_shape"
}
}
}
}
和简单多边形:
/regions/_doc/1
{
"location" : {
"type" : "polygon",
"coordinates" : [
[
[53.847332102970626,27.485155519098047],
[53.84626875748117,27.487134989351038],
[53.8449047241684,27.48501067981124],
[53.84612634308789,27.482945378869765],
[53.847411219859,27.48502677306532],
[53.847332102970626,27.485155519098047]
]
]
}
}
根据文档,我只能搜索多边形内的坐标,只有当多边形包含在请求geo polygon查询中时,但我需要在查询中按坐标查找多边形。elasticsearch 7.6版本。
查询:
{
"query": {
"match_all": {}
},
"filter": {
"geo_shape": {
"geometry": {
"shape": {
"coordinates": [
53.846415,
27.485756
],
"type": "point"
},
"relation": "whithin"
}
}
}
}
1条答案
按热度按时间czq61nw11#
您走的是正确的道路,但您的查询格式严重错误。解决方法如下:
注意我是怎么用的
intersects
而不是within
. 这个答案解释了原因。