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)