几何索引无法按预期工作

时间:2014-04-15 13:48:12

标签: mongodb indexing geometry geospatial geo

这是我命令行的输出。 您可以看到创建索引的第一次尝试失败。 然后我只是将loc-Field重命名为坐标,它的工作原理??? 有人可以向我解释一下。这似乎是一种奇怪的行为。

> db.nodes.find().limit(3)
{ "_id" : ObjectId("534d36b682beda5978db27c1"), "geo" : { "type" : "Point", "loc" : [ 9.7366511, 52.3711883 ] } }
{ "_id" : ObjectId("534d36b682beda5978db27c2"), "geo" : { "type" : "Point", "loc" : [ 9.7399576, 52.3691615 ] } }
{ "_id" : ObjectId("534d36b682beda5978db27c3"), "geo" : { "type" : "Point", "loc" : [ 9.7346094, 52.371738 ] } }
> db.nodes.ensureIndex({"geo":"2dsphere"})
{
        "createdCollectionAutomatically" : false,
        "numIndexesBefore" : 1,
        "ok" : 0,
        "errmsg" : "Can't extract geo keys from object, malformed geometry?: { _id: ObjectId('534d36b682beda5978db27c1'), geo: { type: \"Point\", loc: [ 9.7366511, 52.3711883 ] } }",
        "code" : 16755
}
> db.nodes.find().limit(3)
{ "_id" : ObjectId("534d36ea82be11ca6e9fb112"), "geo" : { "type" : "Point", "coordinates" : [ 9.7366511, 52.3711883 ] } }
{ "_id" : ObjectId("534d36ea82be11ca6e9fb113"), "geo" : { "type" : "Point", "coordinates" : [ 9.7399576, 52.3691615 ] } }
{ "_id" : ObjectId("534d36ea82be11ca6e9fb114"), "geo" : { "type" : "Point", "coordinates" : [ 9.7346094, 52.371738 ] } }
> db.nodes.ensureIndex({"geo":"2dsphere"})
{
        "createdCollectionAutomatically" : false,
        "numIndexesBefore" : 1,
        "numIndexesAfter" : 2,
        "ok" : 1
}

1 个答案:

答案 0 :(得分:0)

目前还不清楚为什么第二次尝试会无声地失败,但这里的主要问题是你的json结构并不完全符合GeoJSON规范。 reference

A" Point" GeoJSON结构应该将它的坐标包含在名为"的坐标" -not" loc"。

中。

尝试使用创建索引 { "_id" : ObjectId("534d36b682beda5978db27c3"), "geo" : { "type" : "Point", "coordinates" : [ 9.7346094, 52.371738 ] } }

请记住,经度始终位于坐标数组中! :