We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b0da856 commit 18ff0dfCopy full SHA for 18ff0df
src/DatasetAPI/Datasets.jl
@@ -407,10 +407,21 @@ end
407
408
409
"""
410
- open_dataset(g; driver=:all)
+ open_dataset(g; skip_keys=(), driver=:all)
411
412
Open the dataset at `g` with the given `driver`.
413
The default driver will search for available drivers and tries to detect the useable driver from the filename extension.
414
+
415
+### Keyword arguments
416
417
+- `skip_keys` are passed as symbols, i.e., `skip_keys = (:a, :b)`
418
+- `driver=:all`, common options are `:netcdf` or `:zarr`.
419
420
+Example:
421
422
+````julia
423
+ds = open_dataset(f, driver=:zarr, skip_keys = (:c,))
424
+````
425
426
function open_dataset(g; skip_keys=(), driver = :all)
427
str_skipkeys = string.(skip_keys)
0 commit comments