主頁(yè) > 知識(shí)庫(kù) > 利用mongodb查詢(xún)某坐標(biāo)是否在規(guī)定多邊形區(qū)域內(nèi)的方法

利用mongodb查詢(xún)某坐標(biāo)是否在規(guī)定多邊形區(qū)域內(nèi)的方法

熱門(mén)標(biāo)簽:濟(jì)南電銷(xiāo)機(jī)器人加盟公司 廣州長(zhǎng)安公司怎樣申請(qǐng)400電話(huà) 杭州人工電銷(xiāo)機(jī)器人價(jià)格 呼和浩特電銷(xiāo)外呼系統(tǒng)加盟 云南外呼系統(tǒng) 電銷(xiāo)機(jī)器人是什么軟件 怎么投訴地圖標(biāo)注 蘋(píng)果汽車(chē)租賃店地圖標(biāo)注 老虎洗衣店地圖標(biāo)注

前言

大家都知道MongoDB是一個(gè)基于分布式文件存儲(chǔ)的數(shù)據(jù)庫(kù),并提供創(chuàng)建基于地理空間的索引的能力,本文將使用MongoDB 基于地理空間索引進(jìn)行坐標(biāo)所在區(qū)域的判斷及使用。

1.使用百度拾取坐標(biāo)工具,在地圖上定義多邊形的坐標(biāo)點(diǎn),并把每個(gè)點(diǎn)的坐標(biāo)保存。

百度拾取坐標(biāo)工具:http://api.map.baidu.com/lbsapi/getpoint/

多邊形的坐標(biāo)點(diǎn)如下:

113.314882,23.163055
113.355845,23.167042
113.370289,23.149564
113.356779,23.129758
113.338238,23.13913
113.330979,23.124706
113.313588,23.140858
113.323865,23.158204
113.314882,23.163055

注意:首尾坐標(biāo)必須一樣,這樣才能使多邊形閉合。

2.使用百度地圖開(kāi)放平臺(tái)地圖JS Demo,把多邊形坐標(biāo)輸入,看看多邊形是否合適。

百度地圖開(kāi)放平臺(tái)地圖JS Demo:http://developer.baidu.com/map/jsdemo.htm#c2_9

把以下代碼替換源碼編輯器中的內(nèi)容,然后點(diǎn)擊運(yùn)行

!DOCTYPE html>
html>
head>
 meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
 meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
 style type="text/css">
 body, html{width: 100%;height: 100%;margin:0;font-family:"微軟雅黑";}
 #allmap {height:100%; width: 100%;}
 #control{width:100%;}
 /style>
 script type="text/javascript" src="http://api.map.baidu.com/api?v=2.0ak=您的密鑰">/script>
 title>設(shè)置線(xiàn)、面可編輯/title>
/head>
body>
 div id="allmap">/div>
 div id="control">
 button onclick = "polyline.enableEditing();polygon.enableEditing();">開(kāi)啟線(xiàn)、面編輯功能/button>
 button onclick = "polyline.disableEditing();polygon.disableEditing();">關(guān)閉線(xiàn)、面編輯功能/button>
 /div>
/body>
/html>
script type="text/javascript">
 // 百度地圖API功能
 var map = new BMap.Map("allmap");
 map.centerAndZoom(new BMap.Point(113.330764,23.155878), 15);
 map.enableScrollWheelZoom();

 var polygon = new BMap.Polygon([
 new BMap.Point(113.314882,23.163055),
 new BMap.Point(113.355845,23.167042),
 new BMap.Point(113.370289,23.149564),
 new BMap.Point(113.356779,23.129758),
 new BMap.Point(113.338238,23.13913),
 new BMap.Point(113.330979,23.124706),
 new BMap.Point(113.313588,23.140858),
 new BMap.Point(113.323865,23.158204)
 ], {strokeColor:"blue", strokeWeight:2, strokeOpacity:0.5}); //創(chuàng)建多邊形
 map.addOverlay(polygon); //增加多邊形
/script>

多邊形區(qū)域

3.定義測(cè)試坐標(biāo)

廣州東站坐標(biāo):113.330908,23.155678 (多邊形內(nèi))

宏發(fā)大廈:113.33831,23.137335 (多邊形外)

4.在mongodb測(cè)試

1.創(chuàng)建數(shù)據(jù)庫(kù)

use testdb;

db.createUser( 
 { 
 "user":"root", 
 "pwd":"123456", 
 "roles":[{"role" : "readWrite", "db":"testdb"}] 
 } 
);

db.auth( 
 { 
 "user":"root", 
 "pwd":"123456" 
 } 
);

2.插入多邊形范圍并添加索引

db.geo.ensureIndex( 
 { 
 polygons: "2dsphere" 
 } 
);

db.geo.insert(
 {
 polygons:
 {
 type:"Polygon",
 coordinates:[[
 [113.314882,23.163055],
 [113.355845,23.167042],
 [113.370289,23.149564],
 [113.356779,23.129758],
 [113.338238,23.13913],
 [113.330979,23.124706],
 [113.313588,23.140858],
 [113.323865,23.158204],
 [113.314882,23.163055],
 ]]
 }
 }
);

3.判斷坐標(biāo)是否在多邊形區(qū)域

廣州東站坐標(biāo):113.330908,23.155678

db.geo.find(
 {
 polygons:
 {
 $geoIntersects:
 {
 $geometry:{ 
  "type" : "Point",
  "coordinates" : [113.330908,23.155678] }
 }
 }
 }
);

輸出:

{ "_id" : ObjectId("57c2b1895fb7fd4790f9f099"), "polygons" : { "type" : "Polygon", "coordinates" : [ [ [ 113.314882, 23.163055 ], [ 113.355845, 23.167042 ], [ 113.370289, 23.149564 ], [ 113.356779, 23.129758 ], [ 113.338238, 23.13913 ], [ 113.330979, 23.124706 ], [ 113.313588, 23.140858 ], [ 113.323865, 23.158204 ], [ 113.314882, 23.163055 ] ] ] } }

表示坐標(biāo) 113.330908,23.155678 在多邊形區(qū)域內(nèi)

宏發(fā)大廈:113.33831,23.137335

db.geo.find(
 {
 polygons:
 {
 $geoIntersects:
 {
 $geometry:{ 
  "type" : "Point",
  "coordinates" : [113.33831,23.137335] }
 }
 }
 }
);

輸出:

表示坐標(biāo) 113.33831,23.137335 在多邊形區(qū)域外

總結(jié)

以上就是利用mongodb判斷坐標(biāo)是否在指定多邊形區(qū)域內(nèi)的全部?jī)?nèi)容了,希望本文的內(nèi)容對(duì)大家的學(xué)習(xí)或者工作能帶來(lái)一定的幫助,如果有疑問(wèn)大家可以留言交流,謝謝大家對(duì)腳本之家的支持。

您可能感興趣的文章:
  • php+mongodb判斷坐標(biāo)是否在指定多邊形區(qū)域內(nèi)的實(shí)例

標(biāo)簽:遼陽(yáng) 泰安 雞西 玉林 無(wú)錫 自貢 廈門(mén) 興安盟

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《利用mongodb查詢(xún)某坐標(biāo)是否在規(guī)定多邊形區(qū)域內(nèi)的方法》,本文關(guān)鍵詞  利用,mongodb,查詢(xún),某,坐標(biāo),;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《利用mongodb查詢(xún)某坐標(biāo)是否在規(guī)定多邊形區(qū)域內(nèi)的方法》相關(guān)的同類(lèi)信息!
  • 本頁(yè)收集關(guān)于利用mongodb查詢(xún)某坐標(biāo)是否在規(guī)定多邊形區(qū)域內(nèi)的方法的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章