我使用mongoDB存储GPS位置数据作为此GeoJSON文档
{“type”:“Point”,“coordinates”:[33.313183,44.465632]}
{“type”:“Point”,“coordinates”:[33.2926487,44.4159651]}
更新:我还确保了2dspher索引,如关注
db.test.ensureIndex( { loc : "2dsphere" } )
我从谷歌地图获得了坐标 现在,如果我使用此命令搜索,我无法将结果中的距离转换为千米
db.runCommand({geoNear: 'test', spherical: true, near: {type: "Point" , coordinates: [33.2926487, 44.4159651]}})
结果如下
"results" : [
{
"dis" : 0.0033427770982422957,
"obj" : {
"_id" : ObjectId("54a96f348fa05fcaed637a22"),
"loc" : {
"type" : "Point",
"coordinates" : [
33.2926487,
44.4159651
]
}
}
},
{
"dis" : 5764.7060911604085,
"obj" : {
"_id" : ObjectId("54a96f4c8fa05fcaed637a23"),
"loc" : {
"type" : "Point",
"coordinates" : [
33.313183,
44.465632
]
}
}
}
]
第一个结果预计为零,因为它与我想要获得距离源=目标坐标的距离相同,但仍有值。
我无法转换为公里的第二个值,在Google距离计算器中约为5.26KM。
答案 0 :(得分:8)
当我继续研究这个问题时,我发现了这一点 点存储类型有两种类型
传统点作为此格式
db.test2.insert({location: [33.313183, 44.465632]})
和GeoJSON指向此格式
db.test.insert({location: {"type" : "Point", "coordinates" : [33.313183, 44.465632]}})
如果我们使用遗留点,结果将是弧度,所以我们将使用此语句将其转换为公里
db.runCommand({geoNear: 'test2', spherical: true, near: [33.2926487, 44.4159651], distanceMultiplier: 6371})
如果我们使用GeoJSON点,结果将以米为单位,因此我们将使用此语句将其转换为公里作为此问题的答案
db.runCommand({geoNear: 'test', spherical: true, near: {type: "Point" , coordinates: [33.2926487, 44.4159651]}, distanceMultiplier: 0.001})
solution in case of GeoJSON point format
for more details check this link, a bug report to MongoDB that explains it all.
答案 1 :(得分:7)
距离以米为单位返回。要转换为千米,除以1000.您可以使用distanceMultiplier
选项让MongoDB执行此操作:
db.runCommand({ "geoNear" : "test", "spherical" : true, "distanceMultiplier" : 0.001, "near" : { "type" : "Point" , "coordinates" : [33.2926487, 44.4159651] } })
答案 2 :(得分:0)
您是否将该字段编入2dsphere
索引。这可以解释因为您查询sphere: true