networkx 示例中的示例 geopandas 数据

Sample geopandas data in networkx example

我正在尝试 networkx here 提供的示例。此示例在文件名 cholera_cases.pkdg.

中使用 geopandas 数据集
# read in example data from a geopackage file. Geopackages
# are a format for storing geographic data that is backed
# by sqlite. geopandas reads data relying on the fiona package,
# providing a high-level pandas-style interface to geographic data.
cases = geopandas.read_file("cholera_cases.gpkg")

然而,该示例并未提及从何处以及如何获取此数据集。我上下梳理了 GeoPandas 网站,但无法找到该文件。我想查看其内容的格式和运行这个例子。

有谁知道从哪里得到这种geopandas文件,请指教

如果你去他们的GitHub,你可以在他们的回购中找到它。这里:https://github.com/networkx/networkx/tree/main/examples/geospatial

可能值得克隆 repo 来玩这些例子。

作为一般性建议,在此类项目的网页上,我喜欢始终检查其 GitHub/GitLab/other 的链接,因为您可以看到幕后的项目,并且本地克隆可以保持最新日期