国产精品婷婷久久久久久,国产精品美女久久久浪潮av,草草国产,人妻精品久久无码专区精东影业

基于linux的gis服務(wù)器的設(shè)計與實現(xiàn).rar

RAR格式版權(quán)申訴手機打開展開

基于linux的gis服務(wù)器的設(shè)計與實現(xiàn),基于linux的gis服務(wù)器的設(shè)計與實現(xiàn)1.7萬字 57頁包括開題報告及bnf表達(dá)式,幾何對象的wkb表示內(nèi)容摘要本文首先介紹了gis的歷史,gis當(dāng)今取得的成果,以及gis后面的發(fā)展趨勢,再說明了一些基本概念(gis的功能,組成,以及gis的一些專用名詞)。接著重點介紹了gis系統(tǒng)的設(shè)計架構(gòu)以及遵循的設(shè)計原則(面向?qū)?..
編號:88-34553大小:221.70K
分類: 論文>計算機論文

該文檔為壓縮文件,包含的文件列表如下:

內(nèi)容介紹

原文檔由會員 usactu 發(fā)布

基于Linux的GIS服務(wù)器的設(shè)計與實現(xiàn)
1.7萬字 57頁
包括開題報告及BNF表達(dá)式,幾何對象的WKB表示內(nèi)容



摘 要

本文首先介紹了GIS的歷史,GIS當(dāng)今取得的成果,以及GIS后面的發(fā)展趨勢,再說明了一些基本概念(GIS的功能,組成,以及GIS的一些專用名詞)。
接著重點介紹了GIS系統(tǒng)的設(shè)計架構(gòu)以及遵循的設(shè)計原則(面向?qū)ο螅?,OGC的規(guī)范中的幾何空間對象的WKT和WKB表現(xiàn)形式,WKB主要表現(xiàn)在BNF(巴科斯范式)的定義和組織結(jié)構(gòu),而WKB主要表現(xiàn)在OGC標(biāo)準(zhǔn)協(xié)會對于幾何對象在計算機的二進(jìn)制流中的組織形態(tài)。
第三章在第二章的基礎(chǔ)上詳細(xì)的介紹和分析了GIS服務(wù)器的各個模塊的設(shè)計(與數(shù)據(jù)庫的交互,GIS中的對象體系結(jié)構(gòu),繪圖模塊的設(shè)計)。通過介紹類的結(jié)構(gòu)和一些示例代碼來把設(shè)計方法更加形象的展示出來。
第四章在分析了當(dāng)前的服務(wù)器的設(shè)計之上,找出當(dāng)前服務(wù)器的不足之處,提出需要改進(jìn)的部分和大概的解決方案。由于保證了系統(tǒng)結(jié)構(gòu)的可擴展性,使得后續(xù)的改進(jìn)工作能夠很好的進(jìn)行。

關(guān)鍵詞:GIS,OGC,WKB,WKT ,設(shè)計和實現(xiàn)




The design and implementation of GIS server

Abstract

At the beginning of the article, we introduced the history of GIS (Geography Information System), the achievements of GIS. And finally some basic terminology and concepts have been introduced.
At the second chapter, we give a representation of the whole architecture and the design principles (Object-Oriented) we following. The whole GIS server obeys the standards of Simple Features of OpenGIS specification: the WKT form and WKB form of spatial objects. This is the core content when designing the GIS server’s architecture. The WKT forms emphasize on making the geometry object easily to read by human or developer. The WKB forms are trying to make data utilization maximum.
In the base of the previous chapter, the third chapter describes detail design of each modules mentioned in second chapter. We clear the principles in detail design by list some pictures and source code.
At last, we analyzed the whole GIS server’s architecture and detailed design. Through that, we proposed some improvements in the GIS server, with whole view and the detail view. As we made the system architecture easily to extent, The following improvements on the GIS server can execute without too much trouble.

Key Words: GIS, OGC, WKB, WKT, Design and implementation




目 錄

1. 引言 0
1.1. GIS發(fā)展歷史 0
1.2. GIS國外發(fā)展現(xiàn)狀 1
1.3. GIS國內(nèi)發(fā)展現(xiàn)狀 3
2. GIS系統(tǒng)概述 4
2.1. GIS的組成 4
2.1.1 硬 件 4
2.1.2 軟 件 4
2.1.3 數(shù) 據(jù) 5
2.2. GIS的主要功能 5
2.2.1 數(shù)據(jù)輸入 5
2.2.2 數(shù)據(jù)編輯 5
2.2.3 數(shù)據(jù)的存儲與管理 6
2.2.4 空間查詢與分析 6
2.2.5 可視化表達(dá)與輸出 6
2.3. GIS系統(tǒng)的一些基本概念 7
2.3.1 地理信息系統(tǒng)(GIS) 7
2.3.2 地理參照系統(tǒng)(Spatial Reference System) 7
2.3.3 矢量和柵格模式(Vector and Raster Model) 7
2.3.4 空間數(shù)據(jù)庫(Spatial Database) 8
2.3.5 Open GIS Consortium(OGC,開放空間協(xié)會) 8
2.4. 本文的結(jié)構(gòu) 9
3. My GIS系統(tǒng)架構(gòu)設(shè)計 9
3.1. My GIS系統(tǒng)選型 9
3.2. 空間對象的WKB和WKT標(biāo)準(zhǔn)表達(dá)方式 11
3.2.1 BNF(巴科斯范式) 11
3.2.2 WKT 規(guī)范 13
3.2.3 WKB規(guī)范 15
3.3. My GIS系統(tǒng)架構(gòu) 17
3.4. My GIS主要組成部分 19
3. My GIS詳細(xì)設(shè)計 22
3.1. My GIS對象層次結(jié)構(gòu) 22
3.2. PostGIS的實現(xiàn) 24
3.3. My GIS服務(wù)器與PostGIS的交互 24
3.4. GIS服務(wù)器繪圖模塊的設(shè)計 27
4. My GIS工作總結(jié) 0
4.1. 需要進(jìn)行的工作 0
4.2. 當(dāng)前的解決方案 0
5. 結(jié)論 0
致謝 0
參考文獻(xiàn) 1
6. 附錄 2
7.1. 附錄A BNF表達(dá)式 2
7.2. 附錄B 幾何對象的WKB表示 3



參考文獻(xiàn)
[6] 孫家廣等.計算機圖形學(xué)[M] .北京:清華大學(xué)出版社.
[7] 梁啟章.GIS和計算機制圖[M] .北京:科學(xué)出版社
[8] 承繼成等.國家空間信息基礎(chǔ)設(shè)施與數(shù)字地球[M].清華大學(xué)出版社.
[9] Stewart Fotheringham, Prter Rogerson.Spatial Analysis and GIS[M] .Taylor & Francis
[10] 薩師煊,王珊.?dāng)?shù)據(jù)庫系統(tǒng)概論[M] .高等教育出版社