I am trying to convert coordinates to longitude and latitude using Pyproj, however I get an error that I am unable to solve:
b'no arguments in initialization list'
from pyproj import Proj, transform
inProj = Proj(init='epsg:3942')
outProj = Proj(init='epsg:4326')
x1,y1 = 685833.3,6236964.799
x2,y2 = transform(inProj,outProj,x1,y1)
print(x2,y2)
Any idea how I can solve this?
Many thanks for your help!