Skip to content

Commit f36ba3f

Browse files
maxfreuMax Freudenberg
and
Max Freudenberg
authored
enable all virtual file systems (#486)
* enable all virtual file systems * make gdal_virt_fs const --------- Co-authored-by: Max Freudenberg <[email protected]>
1 parent b2e06e9 commit f36ba3f

File tree

1 file changed

+33
-3
lines changed

1 file changed

+33
-3
lines changed

ext/RastersArchGDALExt/gdal_source.jl

+33-3
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,35 @@ const GDAL_Y_LOCUS = Start()
99
# drivers supporting the gdal Create() method to directly write to disk
1010
const GDAL_DRIVERS_SUPPORTING_CREATE = ("GTiff", "HDF4", "KEA", "netCDF", "PCIDSK", "Zarr", "MEM"#=...=#)
1111

12+
# order is equal to https://gdal.org/user/virtual_file_systems.html
13+
const GDAL_VIRTUAL_FILESYSTEMS = "/vsi" .* (
14+
"zip",
15+
"tar",
16+
"gzip",
17+
"7z",
18+
"rar",
19+
"curl",
20+
"curl_streaming",
21+
"s3",
22+
"s3_streaming",
23+
"gs",
24+
"gs_streaming",
25+
"az",
26+
"az_streaming",
27+
"adls",
28+
"oss",
29+
"oss_streaming",
30+
"swift",
31+
"swift_streaming",
32+
"hdfs",
33+
"webhdfs",
34+
"stdin",
35+
"stdout",
36+
"mem",
37+
"subfile",
38+
"sparse",
39+
)
40+
1241
# Array ########################################################################
1342

1443
function RA.FileArray(raster::AG.RasterDataset{T}, filename; kw...) where {T}
@@ -121,9 +150,10 @@ end
121150

122151
function RA._open(f, ::Type{GDALsource}, filename::AbstractString; write=false, kw...)
123152
if !isfile(filename)
124-
# Handle url filenames
125-
# /vsicurl/ is added to urls for GDAL, /vsimem/ for in memory
126-
if length(filename) >= 8 && filename[1:8] in ("/vsicurl", "/vsimem/")
153+
# Handle gdal virtual file systems
154+
# the respective string is prepended to the data source,
155+
# e.g. /vsicurl/https://...
156+
if length(filename) >= 8 && any(startswith.(filename, GDAL_VIRTUAL_FILESYSTEMS))
127157
nothing
128158
elseif RA._isurl(filename)
129159
filename = "/vsicurl/" * filename

0 commit comments

Comments
 (0)