6

我在 2dsphere 上索引了字段 loc,但无法对 Point 类型的 GeoJson 数据运行 geowithin 查询。

这是查询:

 db.test.find( { loc :
                     { $geoWithin :
                        { $geometry :
                           { type : "Polygon" ,
                             coordinates : [ [ [-74.6862705412253, 40.42341005] , 
                                               [-75.0846179, 39.9009465 ], 
                                               [-74.20570119999999, 41.0167639 ]
                                             ]
                                           ]
                           } 
                         } 
                      } 
                 } 

输出:

  uncaught exception: error: {
"$err" : "Can't canonicalize query: BadValue bad geo query",
"code" : 17287
}

文件结构:

         {
           "_id" : ObjectId("53d15e7132e7b7978c472e6e"),
           "loc" : {
                  "type" : "Point",
                   "coordinates" : [ -74.6862705412253, 40.42341005 ]
                   },

         }

索引:

{
"0" : {
    "v" : 1,
    "key" : {
        "_id" : 1
    },
    "name" : "_id_",
    "ns" : "collab.test"
},
"1" : {
    "v" : 1,
    "key" : {
        "loc" : "2dsphere"
    },
    "name" : "TestLocationIndex",
    "ns" : "collab.test",
    "2dsphereIndexVersion" : 2
}

}

但是, $Polygon 在相同的文档上工作正常。我想了解为什么 geowithin 不起作用?

4

1 回答 1

13

这是因为您的多边形没有闭合,实际上您至少需要四个点才能获得一个有效的多边形,第一个点在最后重复,请参阅GeoJSON Polygon 文档。必须说,错误消息可能会更有帮助。众所周知的文本 (WKT)和知名二进制 (WKB) 多边形格式也是如此,因此不是 GeoJSON 的特性。

您的查询应该像这样工作:

db.test.find({loc :
                {$geoWithin :
                    {$geometry :
                       {type : "Polygon" ,
                           coordinates : [[[-74.6862705412253, 40.42341005] , 
                                           [-75.0846179, 39.9009465], 
                                           [-74.20570119999999, 41.0167639],
                                           [-74.6862705412253, 40.42341005]]]                                     
                        } 
                    } 
                 } 
             } 
于 2014-09-17T20:42:13.837 回答