时间:2021-05-22
最近做项目正好需要坐标的转换
然后在csv中将其转化。
最后再在百度地图API上进行检验成功
#http://bbs.lbsyun.baidu.com/forum.php?mod=viewthread&tid=10923#代码原地址import csvimport stringimport timeimport math#系数常量a = 6378245.0ee = 0.00669342162296594323x_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 gcjdef 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 bd2def 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 bddef 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("转换成功")声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
这是百度地图的摩卡托坐标与火星坐标的相互转换方法,大家参考使用吧复制代码代码如下:/***百度摩卡拖坐标与火星坐标的加密解密算法*@authorXFan**/p
以经纬度转换成平面xy坐标为例,使用换算法。经纬度转换成坐标的方法: 用三角函数将球体上的坐标(经纬)换算为投影的圆柱坐标。转化为地图方里坐标。我国规定将各带
python地图经纬度转换、纠偏的代码如下所示:#-*-coding:utf-8-*-importjsonimporturllibimportmathx_pi=
前言最近项目中做到相关网约车小程序。需要使用到地图中的路线规划,对3种地图进行了分析。这里稍微做一下总结:百度地图百度坐标(BD-09)腾讯地图火星坐标(GCJ
在项目中面对不同的坐标体系,在地图上显示多多少少都会有点偏差,下面是使用javascript写的转换方法,具体代码如下所示: //定义一些常量 varx_PI