0

我的机器上运行了一个 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 ]
         },
       }
     }
  }
})

我做错了什么,或者索引是否有可能不起作用?

4

1 回答 1

0

这里有几个问题。

第一个是索引在字段上,loc而您的查询正在查询metadata.location

如果您尝试在其上创建 2dsphere 索引,metadata.location您将看到第二个错误:

"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 的纬度值超出了 [-90, 90] 的可接受范围

在编制索引之前,您需要将数据更正为有效的 GEOJSON。

于 2019-05-02T20:06:40.280 回答