我正在尝试一些代码来获取巴塞罗那的建筑足迹:
import osmnx as ox
import matplotlib.pyplot as plt
%matplotlib inline
place_name = "Barcelona, Barcelona, Catalonia, Spain"
graph = ox.graph_from_place(place_name)
buildings = ox.footprints_from_place(place_name)
运行代码时,它会产生以下错误消息:
TopologicalError: The operation 'GEOSDifference_r' could not be performed. Likely cause is invalidity of the geometry <shapely.geometry.polygon.Polygon object at 0x00000262079B6550>
我已经尝试更新OSMnx版本,但这似乎不是问题。 我该如何解决这个问题?
答案 0 :(得分:0)
解决方案发布在以下github存储库中:
https://github.com/gboeing/osmnx/blob/5176d4a2f86fd2adaf523d3d9bd0bed9b9b1d6ec/osmnx/footprints.py
您应该使用更新后的代码更改footprints.py
文件。
为此,您可以:
-在osmnx包粘贴中打开文件,删除其内容并复制更新的内容,
-或创建一个新文件,然后将其替换为osmnx软件包粘贴。