我在使用 geopandas 读取数据时遇到问题,但根据这篇文章,我试图将 fiona 重新安装到 1.1.6 版本,但似乎错误是由于 fiona 造成的,但它仍然不起作用..
使用 fiona.open('taz.shp') 作为 src 导入 fiona:用于 src 中的功能:打印功能
---------------------------------------------------------------------------
IndexError Traceback (most recent call last)
<ipython-input-31-b70513efc12b> in <module>()
1 import fiona
2 with fiona.open('taz.shp') as src:
----> 3 for feature in src:
4 print feature
fiona/ogrext.pyx in fiona.ogrext.Iterator.__next__ (fiona/ogrext.c:17244)()
fiona/ogrext.pyx in fiona.ogrext.FeatureBuilder.build (fiona/ogrext.c:3254)()
IndexError: list index out of range
但是当我编写其他类似的脚本时,它似乎可以工作
c = fiona.open('taz.shp', 'r')
print c
<open Collection 'taz.shp:taz', mode 'r' at 0x106f51dd0>