摘要: import math def bdToGaoDe(lon,lat): """ 百度坐标转高德坐标 :param lon: :param lat: :return: """ PI = 3.14159265358979324 * 3000.0 / 180.0 x = lon - 0.0065 y = lat - 0.006... 阅读全文
posted @ 2018-11-21 16:39 短毛兔 阅读(2287) 评论(0) 推荐(0) 编辑