AttributeError: 'GeoDataFrame' object has no attribute 'tolist'
时间: 2024-06-03 12:06:20 浏览: 177
Python3下错误AttributeError: ‘dict’ object has no attribute’iteritems‘的分析与解决
5星 · 资源好评率100%
这个错误代表着GeoDataFrame对象没有tolist()函数。这是因为GeoDataFrame不同于普通的DataFrame对象。如果你想要将它转化为Python列表,可以使用values.tolist(),如下所示:
```python
import geopandas as gpd
df = gpd.read_file('file.shp')
lst = df.values.tolist()
```
阅读全文