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

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下载文档可编辑

亚洲云Asiayu,成都云服务器 4核4G 30M 120元一月

点击进入亚云官方网站(www.asiayun.com)公司名:上海玥悠悠云计算有限公司成都铂金宿主机IO测试图亚洲云Asiayun怎么样?亚洲云Asiayun好不好?亚云由亚云团队运营,拥有ICP/ISP/IDC/CDN等资质,亚云团队成立于2018年,经过多次品牌升级。主要销售主VPS服务器,提供云服务器和物理服务器,机房有成都、美国CERA、中国香港安畅和电信,香港提供CN2 GIA线路,CE...

Ceraus24元/月,国庆促销 香港云上新首月五折

Ceraus数据成立于2020年底,基于KVM虚拟架构技术;主营提供香港CN2、美国洛杉矶CN2、日本CN2的相关VPS云主机业务。喜迎国庆香港上新首月五折不限新老用户,cera机房,线路好,机器稳,适合做站五折优惠码:gqceraus 续费七五折官方网站:https://www.ceraus.com香港云内存​CPU硬盘流量宽带优惠价格购买地址香港云2G2核40G不限5Mbps24元/月点击购买...

2021年7月最新洛杉矶CN2/香港CN2 vps套餐及搬瓦工优惠码 循环终身优惠6.58%

搬瓦工怎么样?2021年7月最新vps套餐推荐及搬瓦工优惠码整理,搬瓦工优惠码可以在购买的时候获取一些优惠,一般来说力度都在 6% 左右。本文整理一下 2021 年 7 月最新的搬瓦工优惠码,目前折扣力度最大是 6.58%,并且是循环折扣,续费有效,可以一直享受优惠价格续费的。搬瓦工优惠码基本上可能每年才会更新一次,大家可以收藏本文,会保持搬瓦工最新优惠码更新的。点击进入:搬瓦工最新官方网站搬瓦工...

oppor7参数为你推荐
软银巨亏除了IPO,私募股权投资还有哪些退出方式帕萨特和迈腾哪个好2019帕萨特和迈腾哪个好?隔音怎么样?机械表和石英表哪个好石英表和机械表哪个好手机管家哪个好手机管家哪个好电动牙刷哪个好什么品牌的电动牙刷比较好?美国国际集团世界五百强企业前五十名是哪些?群空间登录怎样进入群空间qq空间登录网站QQ空间打开需要输入用户名和密码,下面是正在连接一个网址和领域网址google广告申请谷歌广告怎么申请?电信10000宽带测速怎样测试电信宽带的网速? 771212
重庆服务器租用 老左 oneasiahost 腾讯云数据库 免费ftp空间 60g硬盘 win8.1企业版升级win10 2017年万圣节 中国特价网 云鼎网络 商务主机 免费全能空间 idc查询 789电视剧 raid10 海外空间 空间申请 乐视会员免费领取 服务器托管价格 japanese50m咸熟 更多