我正在使用带有geohash_grid查询的Elasticsearch 5.1,如下所示:
{
"query": {
...
"geo_bounding_box":...
},
"aggs": {
"lochash": {
"geohash_grid": {
"field": "currentShopGeo",
"precision": 5
}
}
}
}
以下是elasticsearch的结果:
{
....,
"aggregations": {
"lochash": {
"buckets": [
{
"key": "w3gvv",
"doc_count": 1 // only 1 doc_count
}
]
}
}
}
然后,我使用“w3gvv”解码geohash并在“w3gvv”后面有一个边界框。
{
"top_left": {
"lat": 10.8984375,
"lon": 106.7431640625
},
"bottom_right": {
"lat": 10.8544921875,
"lon": 106.787109375
}
}
但是,当我使用上面返回的边界框搜索里面的文档时,Elasticsearch似乎更多返回13个项目。任何人都知道它为何如此奇怪?
答案 0 :(得分:1)
有一个解决方案, 我们可以使用geo_bounds来了解Elasticsearch返回的集群的确切边界,如下所示:
"aggs": {
"lochash": {
"geohash_grid": {
"field": "currentShopGeo",
"precision": 5
},
"aggs": {
"cell": {
"geo_bounds": {
"field": "currentShopGeo"
}
}
}
}
}
结果应为:
{
"key": "w3gvv",
"doc_count": 1,
"cell": {
"bounds": {
"top_left": {
"lat": 10.860191588290036,
"lon": 106.75263083539903
},
"bottom_right": {
"lat": 10.860191588290036,
"lon": 106.75263083539903
}
}
}
}
结果似乎显示项目的确切位置。