to_crs("epsg:4326") 返回不同的坐标

to_crs("epsg:4326") retruns different coordinate

我正在尝试将我的 geopandas 数据框上的坐标系从 epsg:5179 更改为 epsg:4236。

但是,.to_crs("epsg:4326") 返回不同的坐标...我怎样才能得到真正的坐标?

geo[geometry].set_crs("epsg:5179", inplace = True)
geo_df = geo[geometry].to_crs("epsg:4326")


Original
LINESTRING (14138122.900 4519000.200, 14138248...LINESTRING (14135761.800 4518881.600, 14135799...

Changed-proj
LINESTRING (-149.90927 12.31701, -149.90912 12...LINESTRING (-149.91219 12.32162, -149.91215 12...

您的代码似乎得到了真实坐标:

geo[geometry].set_crs("epsg:5179", inplace = True)
geo_df = geo[geometry].to_crs("epsg:4326")

我一直在查看 pyproj,但找不到将坐标 epsg:5179 更改为 epsg:4326 的错误。

如果您想了解更多关于坐标的信息,您可以访问here