gpt4 book ai didi

python - Geopandas:如何将列几何转换为字符串?

转载 作者:行者123 更新时间:2023-12-04 13:15:13 29 4
gpt4 key购买 nike

我有一个 geopandas 数据框

    geometry                                           idx
0 POLYGON ((-74.25559 40.91553, -74.24559 40.915... 0
1 POLYGON ((-74.25559 40.90553, -74.24559 40.905... 1
2 POLYGON ((-74.25559 40.89553, -74.24559 40.895... 2
3 POLYGON ((-74.25559 40.88553, -74.24559 40.885... 3
4 POLYGON ((-74.25559 40.87553, -74.24559 40.875... 4

在哪里
gridDF['geometry'][0]
<shapely.geometry.polygon.Polygon at 0x7fa4cc6ccc50>

我想转换列 geometry 中的条目作为字符串。

最佳答案

如果您想一次处理所有行,可以使用 apply。

from shapely import wkt
gridDF['str_geom'] = gridDF.geometry.apply(lambda x: wkt.dumps(x))

关于python - Geopandas:如何将列几何转换为字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61125808/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com