MongoDB打印两点之间的距离

时间:2015-11-23 05:49:07

标签: mongodb mongodb-query geospatial

当我在MongoDB上触发此查询时,我将获得距离指定坐标500英里附近的所有位置。但我想知道指定坐标和结果位置之间的确切距离。

db.new_stores.find({ "geometry": { $nearSphere: { $geometry: { type: "Point", coordinates: [ -81.093699, 32.074673 ] }, $maxDistance: 500 * 3963 } } } ).pretty()

我的输出如下:

{
    "_id" : ObjectId("565172058bc200b0db0f75b1"),
    "type" : "Feature",
    "geometry" : {
        "type" : "Point",
        "coordinates" : [
            -80.148826,
            25.941116
        ]
    },
    "properties" : {
        "Name" : "Anthony's Coal Fired Pizza",
        "Address" : "17901 Biscayne Blvd, Aventura, FL"
    }
}

我也想知道这个地方与指定坐标的距离。我在几何上创建了2dsphere索引。

3 个答案:

答案 0 :(得分:20)

您可以使用$geoNear聚合管道阶段与查询点生成距离:

 db.new_stores.aggregate([
    { "$geoNear": {
        "near": {
            "type": "Point",
            "coordinates": [ -81.093699, 32.074673 ]
        }, 
        "maxDistance": 500 * 1609,
        "spherical": true,
        "distanceField": "distance",
        "distanceMultiplier": 0.000621371
    }}
]).pretty()

这允许您指定"distanceField",它将在输出文档中生成包含距查询点的距离的另一个字段。您还可以使用"distanceMultiplier"根据需要将任何转换应用于输出距离(即米到英里,并注意所有GeoJSON距离以米为单位返回)

还有geoNear命令具有类似的选项,但它当然不会将游标作为输出返回。

答案 1 :(得分:2)

MongoDB提供了一个 $ geoNear 聚合器,用于计算具有GeoJson坐标的集合中文档的距离。

让我们通过一个简单的例子来理解它。 考虑一个简单的收藏店

1。创建收藏集

db.createCollection('shops')

2。在商店集合中插入文档

db.shops.insert({name:"Galaxy store",address:{type:"Point",coordinates:[28.442894,77.341299]}})

db.shops.insert({name:"A2Z store",address:{type:"Point",coordinates:[28.412894,77.311299]}})

db.shops.insert({name:"Mica store",address:{type:"Point",coordinates:[28.422894,77.342299]}})

db.shops.insert({name:"Full Stack developer",address:{type:"Point",coordinates:[28.433894,77.334299]}})

3。在“地址”字段上创建GeoIndex

db.shops.createIndex({address: "2dsphere" } )

4。现在使用 $ geoNear 聚合器 找出远处的文件。

db.shops.aggregate([{$geoNear:{near:{type:"Point",coordinates:[28.411134,77.331801]},distanceField: "shopDistance",$maxDistance:150000,spherical: true}}]).pretty()

此处坐标:[28.411134,77.331801] 是从中获取文档的中心位置或所需位置。

distanceField:“ shopDistance” ,$ geoNear Aggregator将shopDistance返回为结果字段。

结果:

{ "_id" : ObjectId("5ef047a4715e6ae00d0893ca"), "name" : "Full Stack developer", "address" : { "type" : "Point", "coordinates" : [ 28.433894, 77.334299 ] }, "shopDistance" : 621.2848190449148 }
{ "_id" : ObjectId("5ef0479e715e6ae00d0893c9"), "name" : "Mica store", "address" : { "type" : "Point", "coordinates" : [ 28.422894, 77.342299 ] }, "shopDistance" : 1203.3456146763526 }
{ "_id" : ObjectId("5ef0478a715e6ae00d0893c7"), "name" : "Galaxy store", "address" : { "type" : "Point", "coordinates" : [ 28.442894, 77.341299 ] }, "shopDistance" : 1310.9612119555288 }
{ "_id" : ObjectId("5ef04792715e6ae00d0893c8"), "name" : "A2Z store", "address" : { "type" : "Point", "coordinates" : [ 28.412894, 77.311299 ] }, "shopDistance" : 2282.6640175038788 }

这里的商店距离将以米为单位。

答案 2 :(得分:0)

maxDistance->可选。距文档中心点的最大距离。 MongoDB将结果限制为距中心点指定距离内的那些文档。

如果指定的点是GeoJSON,则以米为单位指定距离;如果指定的点是旧式坐标对,则以弧度指定距离。

在文档中说如果您使用旧式对,例如:near:[long,lat] ,然后以 radians 指定maxDistance。 如果您使用GeoJSON,例如: near:{type:“ Point”,坐标:[long,lat]} , 然后以为单位指定maxDistance。