Skip to content

Commit

Permalink
Rename VSI plugin prefix
Browse files Browse the repository at this point in the history
Resolves #1369
  • Loading branch information
sgillies committed Apr 4, 2024
1 parent eb520dd commit a96b11c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ New features:

Bug fixes:

- Fiona's python opener VSI plugin prefix has been changed to "vsifiopener" to
not conflict with Rasterio (#1368).
- Add a 16-bit integer type "int16" based on OGR's OSFTInt16 integer sub-type
(#1358).
- Allow a GeoJSON collection's layer name to be set on opening in write mode
Expand Down
2 changes: 1 addition & 1 deletion fiona/_vsiopener.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ log = logging.getLogger(__name__)

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

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

0 comments on commit a96b11c

Please # to comment.