Skip to content

Commit a96b11c

Browse files
committed
Rename VSI plugin prefix
Resolves #1369
1 parent eb520dd commit a96b11c

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGES.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ New features:
2727

2828
Bug fixes:
2929

30+
- Fiona's python opener VSI plugin prefix has been changed to "vsifiopener" to
31+
not conflict with Rasterio (#1368).
3032
- Add a 16-bit integer type "int16" based on OGR's OSFTInt16 integer sub-type
3133
(#1358).
3234
- Allow a GeoJSON collection's layer name to be set on opening in write mode

fiona/_vsiopener.pyx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ log = logging.getLogger(__name__)
1919

2020
# Prefix for all in-memory paths used by GDAL's VSI system
2121
# Except for errors and log messages this shouldn't really be seen by the user
22-
cdef str PREFIX = "/vsipyopener/"
22+
cdef str PREFIX = "/vsifiopener/"
2323
cdef bytes PREFIX_BYTES = PREFIX.encode("utf-8")
2424

2525
# This is global state for the Python filesystem plugin. It currently only

0 commit comments

Comments
 (0)