坐标系坐标转换参数求取及坐标转换程序设计

oppor7参数  时间:2021-01-27  阅读:()

毕业设计

设计题目 坐标转换参数求取及坐标转换程序设计学生姓名 张威

指导教师 杜继亮

专 业 测绘工程

班 级 测绘 12-2班

填写日期 2016/4/6

矿业工程学院

I/64下载文档可编辑

摘 要

坐标系统是测量工作中定位的基础坐标系统有多种形式和基准由于各测量工作目的不同所选用的坐标基准也会不同根据不同的工作要求需要将不同的坐标系下的坐标进行相互转换。在这些坐标转换的过程中会用到很多坐标转换模型但是坐标系转换模型过于复杂手算非常困难。本设计为了方便施工时遇到的坐标转换问题设计利用 Visual Basic 6.0编程语言编写程序用来实现坐标系统之间的转换以及转换参数的求解例如 :大地坐标与空间直角坐标的相互转换、高斯投影正反算、二维坐标转换与四参数计算、三维坐标转换与七参数转换、 同参考基准下的坐标换带计算以及坐标数据的批量处理。

关键字坐标系统转换模型坐标转换程序设计

Abstract

I/64下载文档可编辑

The base of coordinate system in surveying work. there aremany forms and benchmarks in the coordinate system.However,in general engineering, the control point and coordinate.Systemare the same.So It is necessary to transform the control point.coordinate during the construction process. Due to differentpurposes of each measurement and the selected. differentcoordinate references, there wi l l be many different coordinatesystems.Coordinate systems used in the measurement work areas fol lows:WGS-84 World Geodetic System, China GeodeticCoordinate System 2000,National Geodetic Coordinate System1980, Beijing coordinate system 1954 and Local CoordinateSystem. There are space rectangular coordinate, geodeticcoordinate and plane coordinate in the way of the reference in thesame coordinate. According to the requirements of different

I I/64下载文档可编辑

tasks, we need to convert coordinates under the differentcoordinate systems.On condition that the coordinates of thereference standard can be obtained. the normal constructionwork can be done.A lot of coordinate transformation models areused in the process of the coordinate transformation. But thecoordinate transformation model is very complex and difficult.Nowadays the conversion formula is suitable for thecomputerization whose language is easy to learn. So in thedesign I make use of Visual Basic 6 programming language toreal ize the transformation between the coordinate system andtransformation parameters.

Key words : coordinate systems transformation modelcoordinate transform programming

I I I/64下载文档可编辑

目录

摘 要. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .I

Abstract. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .I

目录. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .IV

第1章绪论. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .1

1 .1研究背景和意义. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .1

1 .2国内外研究现状. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .1

1 .3研究的主要内容. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .3

1 .4程序设计思路方法. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .3

第2章基础知识准备. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .3

2.1地球椭球. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .3

2.2基准. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .4

2.3测量常用坐标系. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .6

2.3.1大地坐标系. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .6

2.3.2空间直角坐标系. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .7

2.3.3平面坐标系. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .7

2.3.4地方独立坐标系. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .8

2.4我国常用坐标系. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .8

2.4.1 1954年北京坐标系. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .9

2.4.21980国家大地坐标系. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .9

2.4.3 WGS-84世界大地坐标系. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .10

2.4.42000国家大地坐标系. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .10

2.5坐标转换模型. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .1 1

2.5.1大地坐标系与空间直角坐标系转换模型. . . . . . . . . . . . . . . . . . . . . .1 1

2.5.2高斯正反算转换模型. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .13

2.5.4三、六度带带号与中央子午线计算模型. . . . . . . . . . . . . . . . . . . . . .19

第3章坐标转换程序设计. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .20

IV/64下载文档可编辑

图3-2程序主界面. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .21

3.1大地坐标系与空间直角坐标系的转换. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .21

3.2高斯平面坐标与大地坐标的转换. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .24

3.3高斯投影换带计算. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .28

3.4二维坐标转换与四参数计算. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .33

3.5三维坐标转换与七参数计算. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .36

3.6三、六度带带号与中央子午线计算. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .41

第4章程序验证. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .47

第5章设计总结. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .50

致谢. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .51

参考文献. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .52

Abstract. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .Error : Reference source not found

第 1章绪论

1 .1研究背景和意义 . . . . . . . . . Error:Reference source not found

1 .2国内外研究现状 . . . . . . . . . Error:Reference source not found

1 .3研究的主要内容 . . . . . . . . . Error:Reference source not found

1 .4程序设计思路方法. . . . . . Error:Reference source not found第 2章坐标理论和知识

2.1地球椭球. . . . . . . . . . . . . . . . . . . . . .Error:Reference source not found

V/64下载文档可编辑

2.2基准. . . . . . . . . . . . . . . . . . . . . . . . . . . .Error:Reference source not found

2.3测量常用坐标系 . . . . . . . . . Error:Reference source not found

2.3.1大地坐标系. . . . . . . . . Error:Reference source not found

2.3.2空间直角坐标系 Error:Reference source not found

2.3.3平面坐标系. . . . . . . . . Error:Reference source not found

2.3.4地方独立坐标系 Error:Reference source not found

2.4我国常用坐标系 . . . . . . . . . Error:Reference source not found

2.4.1 1954年北京坐标系. . . . . . Error:Reference source notfound

2.4.21980国家大地坐标系 Error:Reference source notfound

2.4.3 WGS-84世界大地坐标系 . . . . . . . Error:Referencesource not found

2.4.42000国家大地坐标系 Error:Reference source notfound

第 3章坐标转换程序设计

VI/64下载文档可编辑

3.1大地坐标系与空间直角坐标系的转换. Error:Referencesource not found

3.1 .1大地坐标转换成空间直角坐标 . Error:Referencesource not found

3.1 .2空间直角坐标转成换大地坐标 . Error:Referencesource not found

3.2高斯平面坐标与大地坐标的转换. . . . . . . Error:Referencesource not found

3.2.1高斯正算. . . . . . . . . . . . Error:Reference source not found

3.2.2高斯反算. . . . . . . . . . . . Error:Reference source not found

3.3高斯投影换带计算. . . . . . Error:Reference source not found

3.4二维坐标转换与四参数计算. . . Error:Reference source notfound

3.5三维坐标转换与七参数计算. . . Error:Reference source notfound

3.6三、六度带带号与中央子午线计算. . . . Error:Referencesource not found

第 4章设计总结

VI I/64下载文档可编辑

致谢参考文献VI I I/64下载文档可编辑

MineServer:香港CMI/洛杉矶GIA VPS,2核/2GB内存/20GB NVME/3.5TB流量/200Mbps/KVM,288元/年

mineserver怎么样?mineserver是一家国人商家,主要提供香港CN2 KVM VPS、香港CMI KVM VPS、日本CN2 KVM VPS、洛杉矶cn2 gia端口转发等服务,云服务器网(yuntue.com)介绍过几次,最近比较活跃。现在新推出了3款特价KVM VPS,性价比高,香港CMI/洛杉矶GIA VPS,2核/2GB内存/20GB NVME/3.5TB流量/200Mbps...

RAKsmart 年中活动 独立服务器限时$30秒杀 VPS主机低至$1.99

RAKsmart 虽然是美国主机商,但是商家的主要客户群还是在我们国内,于是我们可以看到每次的国内节日促销活动期间商家也会发布促销。包括这次年中大促活动,RAKsmart商家也有发布为期两个月的年终活动,其中有商家擅长的独立服务器和便宜VPS主机。服务器包括站群服务器、特价服务器、高达10G带宽不限制流量的美国服务器。商家优惠活动,可以看到对应商品的优惠,同时也可以使用 优惠码 RAKBL9 同时...

LightNode(7.71美元),免认证高质量香港CN2 GIA

LightNode是一家位于香港的VPS服务商.提供基于KVM虚拟化技术的VPS.在提供全球常见节点的同时,还具备东南亚地区、中国香港等边缘节点.满足开发者建站,游戏应用,外贸电商等应用场景的需求。新用户注册充值就送,最高可获得20美元的奖励金!成为LightNode的注册用户后,还可以获得属于自己的邀请链接。通过你的邀请链接带来的注册用户,你将直接获得该用户的消费的10%返佣,永久有效!平台目前...

oppor7参数为你推荐
天气预报哪个好用哪个最准确最准天气预报软件排行是怎样的?三国游戏哪个好玩哪款三国游戏最好玩`!二手车网站哪个好二手车网站哪家好?哪个信息更可靠?等额本息等额本金哪个好等额本息和等额本金哪个好?手机音乐播放器哪个好手机音乐播放器哪个好无纺布和熔喷布口罩哪个好医用 口罩里面是无纺布好还是过滤纸好杰士邦和杜蕾斯哪个好杰士邦和杜蕾斯哪个好?大家都用哪款套套啊?手机炒股软件哪个好手机炒股软件手机炒股软件哪个好免费手机炒股软件哪个好?dnf魔枪士转职哪个好dnf魔枪士转职哪个职业好?
天津虚拟主机 域名估价 3322动态域名注册 免费linux主机 vps推荐 域名备案流程 万网域名证书查询 七牛优惠码 西安服务器 国外私服 网络星期一 监控宝 免费网络电视 有奖调查 qq云端 天翼云盘 如何安装服务器系统 卡巴斯基免费试用版 双12 阿里云免费邮箱 更多