1

我正在尝试向 geopandas 读取看起来像合法 shapefile 的内容:

gpd.read_file('https://github.com/altcoder/philippines-psgc-shapefiles/blob/master/source/2015/Municities.zip')

但是,我收到驱动程序错误:

DriverError: '/vsimem/dff0663a4e584987848e40266f6b73e8' not recognized as a supported file format.

不幸的是,搜索并没有产生有用的线索。我希望知道geopandas或fiona的人可以提供帮助。

4

1 回答 1

2

从 GitHub 加载时,您需要传递一个指向原始版本 zip 文件的链接。否则,它会链接到 GitHub 页面,而不是文件。

gpd.read_file('https://github.com/altcoder/philippines-psgc-shapefiles/raw/master/source/2015/Municities.zip')
于 2020-12-10T09:23:26.297 回答