我有 OGR 虚拟格式作为 test.vrt 文件,并尝试使用 Python Fiona
lib 读取它。
>>> import fiona
>>> src = fiona.open('abs_path_to_vrt_file.vrt')
之后我收到一个错误:
fiona.errors.DriverError: unsupported driver: 'OGR_VRT'
这是我的 test.vrt 文件:
<?xml version="1.0" encoding="UTF-8"?>
<OGRVRTDataSource>
<OGRVRTLayer name="test">
<SrcDataSource>absolute_path_to_test_shp.shp</SrcDataSource>
</OGRVRTLayer>
</OGRVRTDataSource>
我做错了什么?