我想将等时线图的输出另存为shapefile。
我在这里遵循示例:
https://geoffboeing.com/2017/08/isochrone-maps-osmnx-python/
并在这里尝试了参数:
https://osmnx.readthedocs.io/en/stable/osmnx.html#module-osmnx
但是无法保存它。
例如对于ox.save_load.save_graph_shapefile
,我得到:
AttributeError:“列表”对象没有属性“边缘”
对于ox.save_load.save_gdf_shapefile
,我得到:
AttributeError:“列表”对象没有属性“边缘”
有人做过吗?
答案 0 :(得分:1)
您没有提供代码段或MWE,所以我想您到目前为止已经做了什么,并提出了建议。在this notebook的第8单元格(似乎正在处理)中,将生成多边形等时线列表。您可以仅从此列表创建geopandas地理序列,然后将其作为shapefile保存到磁盘。