RuntimeError: b'no arguments in initialization list'

前端 未结 7 1441
无人共我
无人共我 2020-12-17 00:40

I\'m trying to solve my issue in my own but I couldn\'t, I\'m trying to run this code in every format you can imagine and in ArcGIS pro software it\'s the same I can\'t find

7条回答
  •  忘掉有多难
    2020-12-17 01:27

    I'm using Pycharm. I had to use a combination of both Stone Shi's remark and Dorregaray's.

    import pyproj
    pyproj.Proj("+init=epsg:4326")
    > RuntimeError: b'no arguments in initialization list'
    

    According to Stone Shi, the above proves that it's a pyproj err. So I used Pycharm->Settings and reinstalled pyproj. Then

    import pyproj
    pyproj.Proj("+init=epsg:4326")
    > RuntimeError: b'no arguments in initialization list'
    

    So, it's a pyproj err but Pycharm->Settings reinstalling pyproj does not help me.

    I then edited my C:\Anaconda3\Lib\site-packages\pyproj\datadir.py from:

    pyproj_datadir="C:/Anaconda3\share\proj"
    

    to Dorregaray's:

    pyproj_datadir="C:\Anaconda3\Library\share"
    

    Then test again:

    import pyproj
    pyproj.Proj("+init=epsg:4326")
    >Process finished with exit code 0
    

    No Runtime Error!

    Then test on my

    wgs84  = data.to_crs({'init': 'epsg:4269'})
    >Process finished with exit code 0
    

提交回复
热议问题