天天看點

GIS術語 - POI、AOI、LOI、路徑、軌迹

PostgreSQL , PostGIS , 空間資料庫 , POI , AOI , LOI , 軌迹 , 路徑 , pgrouting , ltree , geojson , geoarray , 全文檢索

Point of interesting. 可以翻譯為興趣點,就是在地圖上任何非地理意義的有意義的點:比如商店,酒吧,加油站,醫院,車站等。不屬于poi的是有地理意義的坐标:城市,河流,山峰

興趣點(POI,Point of interest),興趣點是我們就是導航軟體商收錄的資訊點,比如說XX大廈,XX餐廳等特定的為位置,通過POI我們可以直接在導航軟體上查找相應的目的地。

在導航軟體上如果收錄的POI不完整、不準确或者說未收錄,那麼我們就會發現我們很難開始導航,因為我們無法在導航軟體上找到我們想要去的地方。是以說POI是我們在操作導航儀時首先會遇到的資料庫,就好比在字典中查找一個我們未知的詞語一樣,對于能否得到答案起着至關重要的作用。

在實際應用的過程中,我們一般是直接輸入一個地名,然後進行查找,在得到了目的地的具體位置的時候,用導航儀對我們的行車方向進行指引,然後完成導航的全部過程。

area of interest (AOI)

the geographic bounds of the map sheet

可以了解為AOI個多邊形。

location of interest (LOI)

興趣位置(LOI)。LOI可以是多邊形、點或多點要素、或者是多個多邊形。

這個很好了解,指規劃好的有先後順序的路徑。常見于導航。

實際走過的路徑。由多個有時序的點組成。

1、POI,指中文描述+經緯度。正反都可以查詢。使用空間資料庫PostGIS存儲經緯度,使用全文檢索、模糊查詢、拼音檢索、首字母檢索等 PostgreSQL 技術,搜尋中文描述。

<a href="https://github.com/digoal/blog/blob/master/201711/20171107_07.md">《HTAP資料庫 PostgreSQL 場景與性能測試之 6 - (OLTP) 空間應用 - KNN查詢(搜尋附近對象,由近到遠排序輸出)》</a>

<a href="https://github.com/digoal/blog/blob/master/201711/20171107_06.md">《HTAP資料庫 PostgreSQL 場景與性能測試之 5 - (OLTP) 空間應用 - 空間包含查詢》</a>

<a href="https://github.com/digoal/blog/blob/master/201611/20161109_01.md">《在PostgreSQL中實作按拼音、漢字、拼音首字母搜尋的例子》</a>

<a href="https://github.com/digoal/blog/blob/master/201711/20171107_15.md">《HTAP資料庫 PostgreSQL 場景與性能測試之 14 - (OLTP) 字元串搜尋 - 全文檢索》</a>

<a href="https://github.com/digoal/blog/blob/master/201711/20171107_08.md">《HTAP資料庫 PostgreSQL 場景與性能測試之 7 - (OLTP) 全文檢索 - 含索引實時寫入》</a>

<a href="https://github.com/digoal/blog/blob/master/201710/20171020_01.md">《多國語言字元串的加密、全文檢索、模糊查詢的支援》</a>

<a href="https://github.com/digoal/blog/blob/master/201704/20170426_01.md">《PostgreSQL 模糊查詢最佳實踐》</a>

<a href="https://github.com/digoal/blog/blob/master/201701/20170106_04.md">《PostgreSQL 全表 全字段 模糊查詢的毫秒級高效實作 - 搜尋引擎顫抖了》</a>

<a href="https://github.com/digoal/blog/blob/master/201612/20161231_01.md">《從難纏的模糊查詢聊開 - PostgreSQL獨門絕招之一 GIN , GiST , SP-GiST , RUM 索引原理與技術背景》</a>

2、AOI

PostGIS中的geometry類型,可以存儲2d, 3d, 4d點、線、線段、面、集合。

<a href="http://postgis.net/docs/manual-2.4/reference.html">http://postgis.net/docs/manual-2.4/reference.html</a>

3、LOI

4、路徑,可以使用pgrouting生成,根據内置的圖搜尋算法。

<a href="http://pgrouting.org/">http://pgrouting.org/</a>

5、軌迹,指實際運作生成的軌迹,可以存儲為多條記錄,也可以存儲為一個 線段、GEO 數組、GEO JSON、HSTORE(K-V)、文本等。

<a href="http://postgis.net/docs/manual-2.4/ST_LinestringFromWKB.html">http://postgis.net/docs/manual-2.4/ST_LinestringFromWKB.html</a>

<a href="http://gps.zol.com.cn/243/2436644.html">http://gps.zol.com.cn/243/2436644.html</a>

<a href="https://en.wikipedia.org/wiki/Point_of_interest">https://en.wikipedia.org/wiki/Point_of_interest</a>

<a href="https://pro.arcgis.com/en/pro-app/help/workflow-manager/specifying-an-area-of-interest-aoi.htm">https://pro.arcgis.com/en/pro-app/help/workflow-manager/specifying-an-area-of-interest-aoi.htm</a>

<a href="http://webhelp.esri.com/arcgisdesktop/9.3/index.cfm?TopicName=The_Area_of_Interest_(AOI)_tool">http://webhelp.esri.com/arcgisdesktop/9.3/index.cfm?TopicName=The_Area_of_Interest_(AOI)_tool</a>

<a href="http://zhihu.esrichina.com.cn/article/562">http://zhihu.esrichina.com.cn/article/562</a>