我想像在PostGIS中那样执行空间连接。到目前为止,我已经探索了Geo-shape query概述的各种方法,但它们只能通过使用单个形状或通过 id 访问不同索引中的形状来实现,如下所示:
GET /gdelt/_search
{
"query": {
"bool": {
"filter": {
"geo_shape": {
"location": {
"indexed_shape": {
"index": "ne_countries",
"id": "0bnrXnMB0RPtPof-zD-F",
"path": "geometry"
}
}
}
}
}
}
}
有没有办法在空间上将索引与geo_point
文档与另一个或与geo_shape
文档相同的索引连接起来?