代码分析Python地图坐标转换


Posted in Python onFebruary 08, 2018

最近做项目正好需要坐标的转换

  • 各地图API坐标系统比较与转换;
  • WGS84坐标系:即地球坐标系,国际上通用的坐标系。设备一般包含GPS芯片或者北斗芯片获取的经纬度为WGS84地理坐标系,
  • 谷歌地图采用的是WGS84地理坐标系(中国范围除外);
  • GCJ02坐标系:即火星坐标系,是由中国国家测绘局制订的地理信息系统的坐标系统。由WGS84坐标系经加密后的坐标系。
  • 谷歌中国地图和搜搜中国地图采用的是GCJ02地理坐标系; BD09坐标系:即百度坐标系,GCJ02坐标系经加密后的坐标系;
  • 搜狗坐标系、图吧坐标系等,估计也是在GCJ02基础上加密而成的.

然后在csv中将其转化。

最后再在百度地图API上进行检验成功

#http://bbs.lbsyun.baidu.com/forum.php?mod=viewthread&tid=10923
#代码原地址
import csv
import string
import time
import math

#系数常量
a = 6378245.0
ee = 0.00669342162296594323
x_pi = 3.14159265358979324 * 3000.0 / 180.0;

#转换经度
def transformLat(lat,lon):
 ret = -100.0 + 2.0 * lat + 3.0 * lon + 0.2 * lon * lon + 0.1 * lat * lon +0.2 * math.sqrt(abs(lat))
 ret += (20.0 * math.sin(6.0 * lat * math.pi) + 20.0 * math.sin(2.0 * lat * math.pi)) * 2.0 / 3.0
 ret += (20.0 * math.sin(lon * math.pi) + 40.0 * math.sin(lon / 3.0 * math.pi)) * 2.0 / 3.0
 ret += (160.0 * math.sin(lon / 12.0 * math.pi) + 320 * math.sin(lon * math.pi / 30.0)) * 2.0 / 3.0
 return ret

#转换纬度
def transformLon(lat,lon):
 ret = 300.0 + lat + 2.0 * lon + 0.1 * lat * lat + 0.1 * lat * lon + 0.1 * math.sqrt(abs(lat))
 ret += (20.0 * math.sin(6.0 * lat * math.pi) + 20.0 * math.sin(2.0 * lat * math.pi)) * 2.0 / 3.0
 ret += (20.0 * math.sin(lat * math.pi) + 40.0 * math.sin(lat / 3.0 * math.pi)) * 2.0 / 3.0
 ret += (150.0 * math.sin(lat / 12.0 * math.pi) + 300.0 * math.sin(lat / 30.0 * math.pi)) * 2.0 / 3.0
 return ret

#Wgs transform to gcj
def wgs2gcj(lat,lon):
 dLat = transformLat(lon - 105.0, lat - 35.0)
 dLon = transformLon(lon - 105.0, lat - 35.0)
 radLat = lat / 180.0 * math.pi
 magic = math.sin(radLat)
 magic = 1 - ee * magic * magic
 sqrtMagic = math.sqrt(magic)
 dLat = (dLat * 180.0) / ((a * (1 - ee)) / (magic * sqrtMagic) * math.pi)
 dLon = (dLon * 180.0) / (a / sqrtMagic * math.cos(radLat) * math.pi)
 mgLat = lat + dLat
 mgLon = lon + dLon
 loc=[mgLat,mgLon]
 return loc

#gcj transform to bd2
def gcj2bd(lat,lon):
 x=lon
 y=lat
 z = math.sqrt(x * x + y * y) + 0.00002 * math.sin(y * x_pi)
 theta = math.atan2(y, x) + 0.000003 * math.cos(x * x_pi)
 bd_lon = z * math.cos(theta) + 0.0065
 bd_lat = z * math.sin(theta) + 0.006
 bdpoint = [bd_lon,bd_lat]
 return bdpoint

#wgs transform to bd
def wgs2bd(lat,lon):
 wgs_to_gcj = wgs2gcj(lat,lon)
 gcj_to_bd = gcj2bd(wgs_to_gcj[0], wgs_to_gcj[1])
 return gcj_to_bd;

for i in range (3,4):
 n = str('2017.040'+ str(i)+'.csv')
 m = str('2017040' + str(i)+'.csv')
 csvfile = open(m,'w',encoding='UTF-8',newline='')
 nodes = csv.writer(csvfile)
 nodes.writerow(['md5','content','phone','conntime','recitime','lng','lat'])
 l=[]
 with open(n,newline='',encoding='UTF-8') as f:
  reader = csv.DictReader(f)
  for row in reader:
   if row['md5'] == 'md5':
    continue
   else:
    y=float(row['lng'])
    x=float(row['lat'])
    loc=wgs2bd(x,y)
    l.append([row['md5'],row['content'],row['phone'],row['conntime'],row['recitime'],loc[0],loc[1]])
 nodes.writerows(l)
 csvfile.close()

 print("转换成功")
Python 相关文章推荐
python通过线程实现定时器timer的方法
Mar 16 Python
Python 多进程并发操作中进程池Pool的实例
Nov 01 Python
python编程使用协程并发的优缺点
Sep 20 Python
新年快乐! python实现绚烂的烟花绽放效果
Jan 30 Python
Python实现定期检查源目录与备份目录的差异并进行备份功能示例
Feb 27 Python
如何爬取通过ajax加载数据的网站
Aug 15 Python
python3 写一个WAV音频文件播放器的代码
Sep 27 Python
python3.7 利用函数os pandas利用excel对文件名进行归类
Sep 29 Python
Python 实现Serial 与STM32J进行串口通讯
Dec 18 Python
Python如何通过Flask-Mail发送电子邮件
Jan 29 Python
Python re正则表达式元字符分组()用法分享
Feb 10 Python
python函数中将变量名转换成字符串实例
May 11 Python
python爬虫中get和post方法介绍以及cookie作用
Feb 08 #Python
Python OpenCV 直方图的计算与显示的方法示例
Feb 08 #Python
python OpenCV学习笔记之绘制直方图的方法
Feb 08 #Python
Python列表推导式与生成器表达式用法示例
Feb 08 #Python
详解python OpenCV学习笔记之直方图均衡化
Feb 08 #Python
python OpenCV学习笔记实现二维直方图
Feb 08 #Python
Python数据分析之双色球基于线性回归算法预测下期中奖结果示例
Feb 08 #Python
You might like
聊天室php&mysql(六)
2006/10/09 PHP
php使用文本统计访问量的方法
2016/05/12 PHP
PHP+ajax实现二级联动菜单功能示例
2018/08/10 PHP
Laravel框架Request、Response及Session操作示例
2019/05/06 PHP
asp.net中System.Timers.Timer的使用方法
2013/03/20 Javascript
解决JS中乘法的浮点错误的方法
2014/01/03 Javascript
JavaScript利用构造函数和原型的方式模拟C#类的功能
2014/03/06 Javascript
jQuery实现连续动画效果实例分析
2015/10/09 Javascript
JS中的eval 为什么加括号
2016/04/13 Javascript
如何利用JSHint减少JavaScript的错误
2016/08/23 Javascript
jQuery EasyUI右键菜单实现关闭标签/选项卡
2016/10/10 Javascript
JS产生随机数的用法小结
2016/12/10 Javascript
vue实现表格数据的增删改查
2017/07/10 Javascript
基于input动态模糊查询的实现方法
2017/12/12 Javascript
详解vue beforeRouteEnter 异步获取数据给实例问题
2019/08/09 Javascript
微信小程序scroll-view锚点链接滚动跳转功能
2019/12/12 Javascript
vue大型项目之分模块运行/打包的实现
2020/09/21 Javascript
[01:06]欢迎来到上海,TI9
2018/08/26 DOTA
python基于urllib实现按照百度音乐分类下载mp3的方法
2015/05/25 Python
Python上传package到Pypi(代码简单)
2016/02/06 Python
Python解决走迷宫问题算法示例
2018/07/27 Python
对Python中小整数对象池和大整数对象池的使用详解
2019/07/09 Python
使用jupyter notebook运行python和R的步骤
2020/08/13 Python
python的scipy.stats模块中正态分布常用函数总结
2021/02/19 Python
canvas之万花筒效果的简单实现(推荐)
2016/08/16 HTML / CSS
The Athlete’s Foot新西兰:新西兰最大的运动鞋零售商
2019/12/23 全球购物
优乐美广告词
2014/03/14 职场文书
房地产公司见习自我鉴定
2014/04/28 职场文书
工伤事故赔偿协议书(标准)
2014/09/29 职场文书
2014年学校党建工作汇报材料
2014/11/02 职场文书
2014社会治安综合治理工作总结
2014/12/04 职场文书
2015年个人剖析材料范文
2014/12/29 职场文书
拾金不昧表扬稿
2015/01/16 职场文书
学生会个人总结范文
2015/02/15 职场文书
2020年元旦晚会策划书模板
2019/12/30 职场文书
oracle表分区的概念及操作
2021/04/24 Oracle