gpt4 book ai didi

python - 向 OSMnx 图中添加一个点

转载 作者:行者123 更新时间:2023-12-04 18:57:17 26 4
gpt4 key购买 nike

我正在尝试在 Jupyter 笔记本中的现有 OSMnx 图中添加一个点,如下所示

import osmnx as ox
import matplotlib.pyplot as plt

G = ox.graph_from_address('1600 Pennsylvania Ave NW, Washington, DC 20500',
distance=500)

fig, ax = ox.plot_graph(G)

ax.scatter(-77.036498, 38.897270, c='red')

plt.show()

但我的观点(-77.036498, 38.897270)没有出现。有任何想法吗?
print (type(fig), type(ax))
<class 'matplotlib.figure.Figure'> <class 'matplotlib.axes._subplots.AxesSubplot'>

enter image description here

最佳答案

问题是ox.plot_graph将在您绘制您的观点之前显示您的图表。请注意,如果您设置 show=False , ox.plot_graph将默认关闭图窗。您将需要更改您的 ox.plot_graph到:

fig, ax = ox.plot_graph(G, show=False, close=False)

希望下图是您想要的:

enter image description here

关于python - 向 OSMnx 图中添加一个点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49460880/

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