UTM坐标转WGS84 EPSG设置

先根据下面的图找到目标地区的编号,中国东部地区属于UTM Zone 50N
DMAP: UTM Grid Zones of the World

查找UTM 50N 的 EPSG 执行标准 Coordinate reference systems for "UTM zone 50N"
WGS 84 / UTM zone 50N
EPSG:32650

>>> from pyproj import Proj,transform
>>> WGS84 = Proj(init='EPSG:4326')
>>> p = Proj(init="EPSG:32650")
>>> x,y = 526434.351935, 3522210.609046
>>> transform(p, WGS84, x, y)
(117.27936202563953, 31.835267862875163

猜你喜欢

转载自blog.csdn.net/weixin_52127098/article/details/124512013