如果我有以下形式的文件:
{
pos: { lat: 0, lon: 30 }
}
在收集用户中(请假装这些是真正的lat / lon :-))
将所有值放在某个半径范围内的正确方法是什么:50英里?
答案 0 :(得分:59)
这是一个3步骤。
2dsphere
索引到点的路径。$geoWithin
和$centerSphere
要执行地理空间查询,您需要更改文档结构以匹配GeoJSON点。 看起来像这样。
loc : {
type : "Point",
coordinates : [lng, lat]
}
将您的收藏品翻译成Point格式的示例代码。
// sample setup code.
// use test;
// db.positions.drop();
// db.positions.insert({
// pos : {
// lat : 0,
// lon : 30
// }
// });
db.positions.find().forEach(function (doc) {
var point = {
_id : doc._id,
loc : {
type : "Point",
coordinates : [doc.pos.lon, doc.pos.lat]
}
};
db.positions.update(doc, point);
});
db.positions.find().pretty();
之后,您可以在查询中使用$geoWithin
和$near
运算符,如下例所示。
var createLandmarkDoc = function (name, lng, lat) {
return {
name : name,
loc : {
type : "Point",
coordinates : [lng, lat]
}
};
};
var addNewLandmark = function(name, lng, lat){
db.landmarks.insert(createLandmarkDoc(name, lng, lat));
};
db.landmarks.drop();
// Step 1: Add points.
addNewLandmark("Washington DC", 38.8993487, -77.0145665);
addNewLandmark("White House", 38.9024593, -77.0388266);
addNewLandmark("Library of Congress", 38.888684, -77.0047189);
addNewLandmark("Patuxent Research Refuge", 39.0391718, -76.8216182);
addNewLandmark("The Pentagon", 38.871857, -77.056267);
addNewLandmark("Massachusetts Institute of Technology", 42.360091, -71.09416);
// Step 2: Create index
db.landmarks.ensureIndex({
loc : "2dsphere"
});
var milesToRadian = function(miles){
var earthRadiusInMiles = 3959;
return miles / earthRadiusInMiles;
};
var landmark = db.landmarks.findOne({name: "Washington DC"});
var query = {
"loc" : {
$geoWithin : {
$centerSphere : [landmark.loc.coordinates, milesToRadian(5) ]
}
}
};
// Step 3: Query points.
db.landmarks.find(query).pretty();
{
"_id" : ObjectId("540e70c96033ed0d2d9694fa"),
"name" : "Washington DC",
"loc" : {
"type" : "Point",
"coordinates" : [
38.8993487,
-77.0145665
]
}
}
{
"_id" : ObjectId("540e70c96033ed0d2d9694fc"),
"name" : "Library of Congress",
"loc" : {
"type" : "Point",
"coordinates" : [
38.888684,
-77.0047189
]
}
}
{
"_id" : ObjectId("540e70c96033ed0d2d9694fb"),
"name" : "White House",
"loc" : {
"type" : "Point",
"coordinates" : [
38.9024593,
-77.0388266
]
}
}
{
"_id" : ObjectId("540e70c96033ed0d2d9694fe"),
"name" : "The Pentagon",
"loc" : {
"type" : "Point",
"coordinates" : [
38.871857,
-77.056267
]
}
}
更多信息:
答案 1 :(得分:0)
基本上,您在具有 2dsphere 索引的集合上使用$geoWithin:
和$centerSphere:
。但是,请逐步进行。
场景:假设用户正在浏览其所在地区的酒店...他想显示距离其当前位置50英里范围内的酒店,并且您的数据库应用程序中包含所有酒店数据。您可能会使用一些MAP API在地图上显示它们(如果您要确保在底部检查链接,那么这是您想要的),但是在此示例中,我们只想获取距离酒店位置50英里范围内的酒店数据在您的MongoDB数据库中。
*您可能希望将
coordinates
编辑为与您的匹配的内容 如果您希望此代码能够正常运行,请在附近的位置 半径距离。
// Your 'hotels' collection could look something like this:
db.hotels.insertMany([
{
'name': 'Golebiewski',
'address': 'Poland, Mikolajki',
'location': { type: "Point", coordinates: [ 40, 5.000001 ] },
'tel': '000 000 000'
},
{
'name': 'Baltazar',
'address': 'Poland, Pultusk 36',
'location': { type: "Point", coordinates: [ 40, 5.000002 ] },
'tel': '000 000 000'
},
{
'name': 'Zamek',
'address': 'Poland, Pultusk',
'location': { type: "Point", coordinates: [ 40, 5.000003 ] },
'tel': '000 000 000'
},
])
然后使用2dsphere索引location
db.places.createIndex( { location : "2dsphere" } )
先准备好工具:
// custom function - convert miles to radian
let milesToRadian = function(miles){
var earthRadiusInMiles = 3963;
return miles / earthRadiusInMiles;
};
// custom function - convert km to radian
let kmToRadian = function(miles){
var earthRadiusInMiles = 6378;
return miles / earthRadiusInMiles;
};
// custom function - returns array with current user geolocation points - [latitude, longitude]
function getUserLocation() {
if (navigator.geolocation) {
navigator.geolocation.getCurrentPosition(function (position) {
let geoPoints = [position.coords.latitude, position.coords.longitude];
console.log(geoPoints);
return geoPoints;
});
} else {
console.log("Geolocation is not supported by this browser.");
}
}
现在使用您的新工具为MongoDB地理空间数据创建查询。
var query = {'location' : {$geoWithin: { $centerSphere: getUserLocation(), milesToRadian(50) ]}}}
// MongoDB example query could look something like:
// {'location': {$geoWithin: { $centerSphere: [ [ 40.000000001, 5.000000001 ], 0.012616704516780217 ]}}}
db.hotels.find(query);
MongoDB返回距离用户位置50英里范围内的文档(酒店)列表。请记住,您的文档需要实现GeoJSON结构来存储位置,并且需要索引 2dsphere 。结果将按照与用户的距离-ASC进行排序。
{ "_id" : ObjectId("5d3130f810050424d26836d6"), "name" : "Golebiewski", "address" : "Poland, Mikolajki", "location" : { "type" : "Point", "coordinates" : [ 40, 5.000001 ] }, "tel" : "000 000 000" }
{ "_id" : ObjectId("5d3130f810050424d26836d7"), "name" : "Baltazar", "address" : "Poland, Pultusk 36", "location" : { "type" : "Point", "coordinates" : [ 40, 5.000002 ] }, "tel" : "000 000 000" }
{ "_id" : ObjectId("5d3130f810050424d26836d8"), "name" : "Zamek", "address" : "Poland, Pultusk", "location" : { "type" : "Point", "coordinates" : [ 40, 5.000003 ] }, "tel" : "000 000 000" }
MongoDB-地理空间查询: https://docs.mongodb.com/manual/geospatial-queries/ https://www.youtube.com/watch?v=3xP-gzh2ck0
在地图上获取数据。在这里,您可以找到一些非常酷的教程。
使用MapBox API打开街道地图: https://docs.mapbox.com/help/tutorials/building-a-store-locator/
带有Google JavaScript API的Google Maps : https://developers.google.com/maps/documentation/javascript/marker-clustering
如果要将地址转换为地理编码点,则可以使用Nominatim gui或Nominatim API
例如,在浏览器中搜索“波兰普尔图斯克”或通过添加到字符串参数&format=json
来请求json响应
https://nominatim.openstreetmap.org/search.php?q=Poland+Pultusk https://nominatim.openstreetmap.org/search.php?q=Poland+Pultusk&format=json
Ps。 MapBox每月最多可免费加载5万次负载,然后调用$ 5/1000次API。 Google为您提供$ 200的每月免费使用额度,共计28k 免费API调用,然后进行7 $ / 1000 API调用。选择你的武器,玩得开心:>。