alex_bn_lee

导航

2022年12月17日 #

【793】墨卡托坐标转WGS84

摘要: 代码: #WebMercator-wgs84 def webMercator2wgs84(x,y): lon = x/20037508.34*180 lat = y/20037508.34*180 lat= 180/math.pi*(2*math.atan(math.exp(lat*math.pi/ 阅读全文

posted @ 2022-12-17 19:51 McDelfino 阅读(486) 评论(0) 推荐(0)

【792】ArcGIS中实现地理坐标转换为投影坐标操作流程

摘要: 参考:ArcGIS中实现地理坐标转换为投影坐标操作流程 通过 Project 工具来实现 阅读全文

posted @ 2022-12-17 19:09 McDelfino 阅读(216) 评论(0) 推荐(0)