0

我正在尝试一些代码来获取巴塞罗那的建筑足迹:

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 版本,但似乎不是问题。我该如何解决这个问题?

4

1 回答 1

0

解决方案发布在以下 github 存储库中:

https://github.com/gboeing/osmnx/blob/5176d4a2f86fd2adaf523d3d9bd0bed9b9b1d6ec/osmnx/footprints.py

您应该footprints.py使用更新的代码更改文件。为此,您可以: - 打开 osmnx 包中的文件粘贴,删除其内容并复制更新的内容,

- 或者创建一个新文件,然后在 osmnx 包粘贴中替换它。

于 2019-09-09T07:36:49.447 回答