哪些离线数据存储在cartopy中?它是存储在site-packages下的数据文件夹中吗?有没有办法触发下载所有可用数据?我想将其复制到未连接到互联网的Linux机器上。我目前正在使用连接到互联网的Windows机器,所以我希望从那里下载数据。感谢。
答案 0 :(得分:12)
查看http://scitools.org.uk/cartopy/docs/latest/cartopy.html中的配置文档。实质上,数据被下载到该配置中的data_dir
项。对我来说,看起来像:
>>> import cartopy.config
>>> cartopy.config['data_dir']
'/home/pelson/.local/share/cartopy'
当然,可以将其配置到您喜欢的任何位置。
因为我还将cartopy部署到我的组织,所以我们还配置了cartopy以集中存储数据。这放在由pre_existing_data_dir
配置项确定的位置。
最后,要批量下载所有数据(数GB),请在tools/feature_download.py的折扣源中添加一个脚本。运行它来下载所有数据只是:
$> python tools/feature_download.py
提供全面帮助:
$> python tools/feature_download.py --help
usage: feature_download.py [-h] [--output OUTPUT] [--dry-run] [--ignore-repo-data] GROUP_NAME [GROUP_NAME ...]
Download feature datasets.
positional arguments:
GROUP_NAME Feature group name: cultural-extra, cultural, gshhs, physical
optional arguments:
-h, --help show this help message and exit
--output OUTPUT, -o OUTPUT
save datasets in the specified directory (default: user cache directory)
--dry-run just print the URLs to download
--ignore-repo-data ignore existing repo data when downloading