须要,查询一个坐标点的附近位置python
能够用数组或者geojson的形式git
<field>: [ <x>, <y> ] <field>: [<longitude>, <latitude> ]
GeoJSONmongodb
location: { type: "Point", coordinates: [-73.856077, 40.848447] }
先列出经度,而后再列出纬度shell
好比 loc 字段json
{ "city": "北京市", "geo_id": 565932, "geo_name": "万柳园(长春堂药店)", "lat": 39.850201868495773283, "lng": 116.33426020654366084, "loc": "[116.33426020654366084,39.850201868495773283]", "status": 0 }
建立 2dsphere 索引 数组
2dsphere索引支持查询球面几何实体对象spa
db.collection.createIndex( { <location field> : "2dsphere" } )
pymongo查询例子code
lng = geo['lng'] lat = geo['lat'] result = geos_collection.aggregate([ {"$geoNear": { "near": { "type": "Point", "coordinates": [lng, lat] }, "distanceField": "distance", "maxDistance": 2000, "query": {"status": -1}, "spherical": True } }, {"$limit": 10} ])
mongodb shell对象
db.o2o_geos.aggregate([ { $geoNear: { near: { type: "Point", coordinates: [120.13606048541625171, 30.29447292933346958 ] }, distanceField: "distance", maxDistance: 2000, query: { status: -1 }, spherical: true } } ])