我的机器上运行着一个BigChainDB docker容器,我正在尝试存储和检索地理空间数据。 我已经通过MongoDB接口在“元数据”集合中创建了2dsphere索引“位置”。 我已经检查了命令:
db.people.getIndexes()
我认为一切正常,实际上结果是这样的:
{
"v" : 2,
"key" : {
"loc" : "2dsphere"
},
"name" : "loc_2dsphere",
"ns" : "bigchain.metadata",
"2dsphereIndexVersion" : 3
}
我插入尝试进行空间查询的文档是(这是db.metadata.findOne()查询的结果):
{
"_id" : ObjectId("5ccab10a2ce1b70022823a0f"),
"id" : "752ee9abccf83c7fd25d86c9a7d12229ae292fa27544f6881f1dbf97ccd8b413",
"metadata" : {
"location" : {
"type" : "Point",
"coordinates" : [
22.170872,
113.578749
]
}
}
}
但是当我使用这个空间查询时,什么也找不到:
db.metadata.find(
{
"metadata": {
"location": {
$near: {
$geometry: {
type: "Point" ,
coordinates: [ 22 , 113 ]
},
}
}
}
})
我做错了什么,还是索引不起作用?
答案 0 :(得分:0)
这里有几个问题。
第一个是索引位于字段loc
上,而您的查询正在查询metadata.location
。
如果尝试在metadata.location
上创建2dsphere索引,则会看到第二个错误:
"errmsg" : "invalid point in geo near query $geometry argument: { type: \"Point\", coordinates: [ 22.0, 113.0 ] } longitude/latitude is out of bounds, lng: 22 lat: 113",
此错误表明您的文档中定义的GEOJSON点无效,因为纬度值为113为outside the acceptable range of [-90, 90]。
在建立索引之前,您需要将数据更正为有效的GEOJSON。