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

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

VinaHost,越南vps,国内延时100MS;不限流量100Mbps

vinahost怎么样?vinahost是一家越南的主机商家,至今已经成13年了,企业运营,老牌商家,销售VPS、虚拟主机、域名、邮箱、独立服务器等,机房全部在越南,有Viettle和VNPT两个机房,其中VNPT机房中三网直连国内的机房,他家的产品优势就是100Mbps不限流量。目前,VinaHost商家发布了新的优惠,购买虚拟主机、邮箱、云服务器、VPS超过三个月都有赠送相应的时长,最高送半年...

享有云:美国BGP云服务器低至20元/月起,首月打折;香港2核2G2M仅50元/月起

享有云怎么样?享有云是一家新的国内云服务器商家,目前提供国内、香港及海外地区的云服务器,拥有多线路如:BGP线路、CN2线路、高防等云服务器,并且提供稳定、安全、弹性、高性能的云端计算服务,实时满足您的多样性业务需求。目前,美国bgp云服务器,5M带宽,低至20元/月起,270元/年起,首月打折;香港2核2G2M仅50元/月起,450元/年起!点击进入:享有云官方网站地址享有云优惠活动:一、美国B...

tmhhost:全场VPS低至6.4折,香港BGP200M日本软银美国cn2 gia 200G高防美国三网cn2 gia韩国CN2

tmhhost放出了2021年的端午佳节+618年中大促的优惠活动:日本软银、洛杉矶200G高防cn2 gia、洛杉矶三网cn2 gia、香港200M直连BGP、韩国cn2,全都是高端优化线路,所有这些VPS直接8折,部分已经做了季付8折然后再在此基础上继续8折(也就是6.4折)。 官方网站:https://www.tmhhost.com 香港BGP线路VPS ,200M带宽 200M带...

oppor7参数为你推荐
唐人社美国10次啦我看到罗显琪第一眼就喜欢他了!当中我们一共见过10次面,也发生过两次关系! 但是他有女朋友对我也只是一时兴起吧,所以第十次见面之后,我们再没有联系,但是现在我大姨妈晚了很多天了,我担心是否怀孕,如果有的话,我又不想打掉,该找他吗?电脑管家和360哪个好360和电脑管家哪个好迈腾和帕萨特哪个好新帕萨特怎么样 迈腾和帕萨特哪个好机械表和石英表哪个好手表石英和机械哪个好机械表和石英表哪个好手表中,石英表和机械表的区别和优缺点浮动利率和固定利率哪个好对于企业来说固定利率贷款与浮动利率贷款优缺点各是什么?谢谢了。手机杀毒软件哪个好安卓手机杀毒软件哪个最好手机音乐播放器哪个好手机哪个音乐播放器的音质更好?英语词典哪个好哪个英语词典好网页传奇哪个好玩传奇网页游戏哪个好玩的最新相关信息
虚拟主机试用30天 cn域名 出租服务器 x3220 老鹰主机 vpsio 日志分析软件 2017年万圣节 ev证书 申请个人网页 三拼域名 云全民 个人域名 idc资讯 广州服务器 789电视剧 服务器是干什么用的 带宽租赁 网站防护 wordpress空间 更多