pyproj坐标转换不变

时间:2018-08-17 21:31:09

标签: coordinate pyproj

我的问题是关于坐标转换的。

我正在尝试将坐标点从一个投影转换为其他不同的投影,但是使用不同的EPSG代码的结果是相同的,我想知道为什么会这样。我在做什么错了?

以下是示例:

from pyproj import Proj, transform
inProj = Proj(init='epsg:26715')
outProj = Proj(init='epsg:4267')
x1,y1 = 600393.17,2146790.7
x2,y2 = transform(inProj,outProj,x1,y1)
print (x2,y2)

-92.04380389492601 19.414034139296536

inProj = Proj(init='epsg:26715')
outProj = Proj(init='epsg:4326')
x1,y1 = 600393.17,2146790.7
x2,y2 = transform(inProj,outProj,x1,y1)
print (x2,y2)

-92.04380389492601 19.414034139296536

inProj = Proj(init='epsg:26715')
outProj = Proj(init='epsg:6365')
x1,y1 = 600393.17,2146790.7
x2,y2 = transform(inProj,outProj,x1,y1)
print (x2,y2)

-92.04380389492601 19.4140341398887

coordinate conversion

0 个答案:

没有答案