@@ -203,6 +203,11 @@ demonstrates its specific usage in
203203
204204Use ` list_data_store_ids() ` to list all available data stores.
205205
206+ ``` python
207+ from xcube.core.store import list_data_store_ids
208+
209+ list_data_store_ids()
210+
206211# ## Filesystem-based data stores
207212
208213The following filesystem- based data stores are available in xcube:
@@ -235,9 +240,9 @@ The `reference` store has the following additional parameters:
235240 * `data_descriptor: dict ` - Optional metadata or descriptor.
236241* `target_protocol: str ` - Target Protocol. If not provided,
237242 derived from the given path.
238- * ` target_options: str ` - Additional options for loadings reference files. Derived from
243+ * `target_options: str ` - Additional options for loading reference files.
244+ * `remote_protocol: str ` - Protocol of the filesystem on which the references. Derived from
239245 the first reference with a protocol, if not given.
240- * ` remote_protocol: str ` - Protocol of the filesystem on which the references
241246 will be evaluated.
242247* `remote_options: str ` - Additional options for loadings reference files.
243248* `max_gap: int ` - Max byte- range gap allowed when merging concurrent requests.
@@ -382,12 +387,11 @@ Data store parameters:
382387* `source_path: str ` - Path or URL into SMOS archive filesystem.
383388* `source_protocol: str ` : Protocol name for the SMOS archive filesystem.
384389* `source_storage_options: dict ` : Storage options for the SMOS archive filesystem. See
385- fsspec documentation for specific filesystems.
390+ fsspec documentation for specific filesystems. Any option can be overriden by
391+ passing it as additional data store parameter.
386392* `cache_path: str ` : Path to local cache directory. Must be given, if file caching
387393 is desired.
388394* `xarray_kwargs: dict ` : Extra keyword arguments accepted by `xarray.open_dataset` .
389- * ` extra_source_storage_options ` : Extra keyword arguments that override settings in
390- * source_storage_options* .
391395
392396Common parameters for opening [xarray.Dataset] instances:
393397
0 commit comments