dongmi1221 2014-11-03 08:20
浏览 377
已采纳

如何在mongodb中找到经纬度附近的地方?

Am very new to mongodb and golang. I have a collection named "myplace" It has the following fileds place_name, city, latitude, longitude. My question is user in some place and searching the nearby places. How can I query to mongodb to find near by locations. Also in golang.

My doc structure

{
    "_id" : ObjectId("544a2147785b707b340ed6c7"),
    "latitude" : 12.36547,
    "longitude" : 1.235689,
    "place_name" : "some_place",
    "city" : "Some city"
}

Thanks in advance

  • 写回答

2条回答 默认 最新

  • dongwang6837 2014-11-03 09:30
    关注

    Hi For your case I think you should changed above doc as below

        {
        "_id" : ObjectId("545749dba2b0b4cf603a7546"),
        "city" : "B",
        "placeName" : "A",
        "loc" : {
            "lon" : 51.10682735591432,
            "lat" : -114.11773681640625
        }
    }
    {
        "_id" : ObjectId("545749f3a2b0b4cf603a7547"),
        "city" : "B1",
        "placeName" : "A1",
        "loc" : {
            "lon" : 51.09144802136697,
            "lat" : -114.11773681640625
        }
    }
    

    After that indexing the above documents as below

    db.collectionName.ensureIndex({loc:"2d"})
    

    If indexing executing properly then write following query to find out near by documents

    db.location.find({loc: {$near:[51,-114]}})
    

    for more help you should refer this mongo $near and $geoNear click here

    and sorry for golang because I don't know more about golang

    for golang

    var places []Place
    lat := 51.515614
    long := -0.268998
    err = coll.Find(bson.M{"loc": bson.M{"$near": []float64{long, lat}, "$maxDistance" :      0.056}}).All(&places)
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 C++ 头文件/宏冲突问题解决
  • ¥15 用comsol模拟大气湍流通过底部加热(温度不同)的腔体
  • ¥50 安卓adb backup备份子用户应用数据失败
  • ¥20 有人能用聚类分析帮我分析一下文本内容嘛
  • ¥15 请问Lammps做复合材料拉伸模拟,应力应变曲线问题
  • ¥30 python代码,帮调试
  • ¥15 #MATLAB仿真#车辆换道路径规划
  • ¥15 java 操作 elasticsearch 8.1 实现 索引的重建
  • ¥15 数据可视化Python
  • ¥15 要给毕业设计添加扫码登录的功能!!有偿