3

Hello I am trying to covert Lat and Long to UTM using the package pyproj but I ma having the following trouble by trying to convert coordinates of a locality in Germany.

from pyproj import Proj
myProj = Proj("+proj=utm +zone=23K, +south +ellps=WGS84 +datum=WGS84 +units=m +no_defs") 

If I do

myProj(44.64104, 11.2278) =
(17049859.412484482, 16805739.561948165)

But if I do

myProj(48.638667,11.458702) = 
(1e+30, 1e+30)
emax
  • 6,965
  • 19
  • 74
  • 141

1 Answers1

0

Solved by changing zone:

myProj = Proj("+proj=utm +zone=33 +north +ellps=WGS84 +datum=WGS84 +units=m +no_defs")
emax
  • 6,965
  • 19
  • 74
  • 141