@@ -56,6 +56,7 @@ This configures a dataset object from a single data source.
5656* ** [ format_id] ( #format_id ) **
5757* ** [ custom_processing] ( #custom_processing ) **
5858* ** [ spatial_resample_params] ( #spatial_resample_params ) **
59+ * ** [ temporal_resample_params] ( #temporal_resample_params ) **
5960
6061
6162#### multi dataset object
@@ -83,6 +84,7 @@ This configures a variable object, which is stored as a data variable within a s
8384* ** [ open_params] ( #open_params ) **
8485* ** [ custom_processing] ( #custom_processing ) **
8586* ** [ spatial_resample_params] ( #spatial_resample_params ) **
87+ * ** [ temporal_resample_params] ( #temporal_resample_params ) **
8688
8789### store object
8890This configures a store object representing one xcube data store instance.
@@ -132,7 +134,6 @@ generation process.
132134
133135* ** [ visualize] ( #visualize ) **
134136* ** [ force_preload] ( #force_preload ) **
135- * ** [ dask_scheduler] ( #dask_scheduler ) **
136137* ** [ gdal_http_params] ( #gdal_http_params ) **
137138
138139
@@ -162,7 +163,7 @@ datacube is required. For further information view the [xarray.merge documentati
162163Desired format of the saved datacube.
163164
164165** Default:** ` zarr `
165- ** Allowed values:** ` netcdf ` , ` zarr `
166+ ** Allowed values:** ` netcdf ` , ` zarr ` , [ ` levels ` ] ( https://xcube.readthedocs.io/en/latest/mldatasets.html#the-xcube-levels-format )
166167
167168### custom_processing
168169This section enables users to define a Python function that is executed after opening
@@ -176,9 +177,18 @@ the dataset. For a full list of supported parameters, refer to the
176177[ ` xcube_resampling.resample_in_space ` Python API documentation] ( https://xcube-dev.github.io/xcube-resampling/api/#xcube_resampling.resample_in_space ) .
177178
178179
179- _ NOTE_ : The first 3 arguments ` (source_ds, target_gm, source_gm) ` in the ` xcube_resampling.resample_in_space ` are not
180- required and will be inferred automatically from the config file's dataset and
181- gridmapping section.
180+ _ NOTE_ : The first 3 arguments ` (source_ds, target_gm, source_gm) ` in the
181+ ` xcube_resampling.resample_in_space ` are not required and will be inferred
182+ automatically from the config file's dataset and gridmapping section.
183+
184+ ### temporal_resample_params
185+ This section enables user to define the parameters for temporal resampling of
186+ the dataset. For a full list of supported parameters, refer to the
187+ [ ` xcube_resampling.resample_in_time ` Python API documentation] ( https://xcube-dev.github.io/xcube-resampling/api/#xcube_resampling.resample_in_time ) .
188+
189+ _ NOTE_ : The argument ` frequency ` is required; the remaining keyword arguments are
190+ optional.
191+
182192
183193** Properties** :
184194
@@ -202,7 +212,7 @@ below.
202212* [ file, https, memory, s3] ( https://xcube.readthedocs.io/en/latest/dataaccess.html#filesystem-based-data-stores )
203213* [ sentinelhub, sentinelhub-cdse] ( https://github.com/xcube-dev/xcube-sh )
204214* [ smos] ( https://github.com/xcube-dev/xcube-smos )
205- * [ stac, stac-cdse, stac-xcube] ( https://github.com/xcube-dev/xcube-stac )
215+ * [ stac, stac-cdse, stac-cdse-ardc, stac-pc, stac-pc-ardc, stac- xcube] ( https://github.com/xcube-dev/xcube-stac )
206216* [ zenodo] ( https://github.com/xcube-dev/xcube-zenodo )
207217
208218---
@@ -243,12 +253,6 @@ only non-preloaded datasets will be preloaded.
243253
244254** Default:** ` True `
245255
246- ### dask_scheduler
247- Scheduler mode put into ` dask.config.set(scheduler=<scheduler_mode>) `
248-
249- ** Default:** ` threads `
250- ** Allowed values:** ` threads ` , ` processes ` , ` single-threaded ` , ` sync ` , ` distributed `
251-
252256### gdal_http_params
253257GDAL http environment variables which are used when opening a tif file with
254258` rioxarray.open_rasterio ` , which uses GDAL driver under the hood, from a remote source.
0 commit comments