I am trying to convert X,Y system to latitude and longitude, and it seems that many people recommend pyproj
In their sample code, they use p1 = Proj(init='epsg:26915')
and p2 = Proj(init='epsg:26715')
But that's for UTM Zone15 Here is my sample x = 492893.53, y= 5458938.38 and my sample code for UTM Zone10N:
p1 = Proj(init='epsg:26910')
p2 = Proj(init='epsg:26710')
x,y = 492893.53, 5458938.38
x2,y2 = transform(p1, p2, x, y)
The output x2, y2 are not the right latitude and longitude
I tried to check epsg value for UTM Zone 10N, there are 3 versions online: version 1, version 2, version 3 I tried all of them, none of them work.
What does p1, p2 really mean and how can I find the values of p1, p2 for any UTM Zone?