OSMnx - 示例文件的问题
OSMnx - problems with example file
我对 Python 和 OSMnx 都是新手。我试图弄清楚这个包是如何工作的,我的最终目标是能够从街道列表中创建 shapefile,我希望这个包能让我更接近这个。
不幸的是,我在使用 运行 获取单个城市街道网络的示例代码时遇到了问题。
示例代码是这样开始的:
import osmnx as ox
%matplotlib inline
ox.config(log_file=False, log_console=True, use_cache=True)
然后这是我想要的 运行:
# get walking network from Szigethalom
G = ox.graph_from_place('Szigethalom, Hungary', network_type = 'walk')
fig, ax = ox.plot_graph(G)
错误信息是这样的:
我用的是win7和jupyter框架
在此先感谢您的帮助!
在 RunOrVeith 的帮助下,我找到了一种现在有效的方法。
您的问题似乎是 pyproj 没有正确安装。我看到你已经回答了你的问题,但有一个更简单的答案。如果你有这样的安装问题,你可以按照OSMnx instructions那个状态:
If you have any trouble with the installation, try installing OSMnx in a new, clean virtual environment using conda and conda-forge:
conda create --override-channels -c conda-forge -n OSMNX python=3
osmnx source activate OSMNX
我对 Python 和 OSMnx 都是新手。我试图弄清楚这个包是如何工作的,我的最终目标是能够从街道列表中创建 shapefile,我希望这个包能让我更接近这个。
不幸的是,我在使用 运行 获取单个城市街道网络的示例代码时遇到了问题。
示例代码是这样开始的:
import osmnx as ox
%matplotlib inline
ox.config(log_file=False, log_console=True, use_cache=True)
然后这是我想要的 运行:
# get walking network from Szigethalom
G = ox.graph_from_place('Szigethalom, Hungary', network_type = 'walk')
fig, ax = ox.plot_graph(G)
错误信息是这样的:
我用的是win7和jupyter框架
在此先感谢您的帮助!
在 RunOrVeith 的帮助下,我找到了一种现在有效的方法。
您的问题似乎是 pyproj 没有正确安装。我看到你已经回答了你的问题,但有一个更简单的答案。如果你有这样的安装问题,你可以按照OSMnx instructions那个状态:
If you have any trouble with the installation, try installing OSMnx in a new, clean virtual environment using conda and conda-forge:
conda create --override-channels -c conda-forge -n OSMNX python=3
osmnx source activate OSMNX