RuntimeError: b'no arguments in initialization list'

前端 未结 7 1431
无人共我
无人共我 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:22

    I came across the same error. I was working with Python version 3.6.3 and Geopandas version 0.4.0. It was solved by using the following instead of df = df.to_crs({'init': 'epsg:4326'}):

    df = df.to_crs(epsg=4326)
    

提交回复
热议问题