从 osmnx 中的特定路径加载缓存文件

Load cache files from a specific Path in osmnx

我有一个简单的问题,在执行 ox.graph_from_place() 时是否可以说明缓存文件的位置。我 运行 Ubunu 终端上的代码,所以我在特定位置有缓存文件,现在我是 运行 jupyter 实验室上的相同代码,我想知道我是否可以说明在哪里从中获取缓存,而不是再次下载它。

先谢谢你。

ox.config()函数中使用cache_folder参数。参见 the docs

import osmnx as ox
ox.config(use_cache=True, cache_folder='./my_cache_folder')