You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/config.md
+41-14Lines changed: 41 additions & 14 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,13 +4,13 @@
4
4
## `version`
5
5
6
6
Configuration schema version. Allows the schema to evolve while still preserving backwards compatibility.
7
-
Its value must be`1`.
7
+
Its value is`1`.
8
8
Defaults to `1`.
9
9
10
10
## `zarr_version`
11
11
12
12
The Zarr version to be used.
13
-
Its value must be`2`.
13
+
Its value is`2`.
14
14
Defaults to `2`.
15
15
16
16
## `fixed_dims`
@@ -25,6 +25,28 @@ Type _string_.
25
25
The name of the variadic append dimension.
26
26
Defaults to `"time"`.
27
27
28
+
## `append_step`
29
+
30
+
If set, enforces a step size in the append dimension between two slices or just enforces a direction.
31
+
Must be one of the following:
32
+
33
+
* Arbitrary step size or not applicable.
34
+
Its value is `null`.
35
+
36
+
* Monotonically increasing.
37
+
Its value is `"+"`.
38
+
39
+
* Monotonically decreasing.
40
+
Its value is `"-"`.
41
+
42
+
* Type _string_.
43
+
A positive or negative time delta value, such as `12h`, `2D`, `-1D`.
44
+
45
+
* Type _number_.
46
+
A positive or negative numerical delta value.
47
+
48
+
Defaults to `null`.
49
+
28
50
## `included_variables`
29
51
30
52
Type _array_.
@@ -59,27 +81,29 @@ Variable metadata.
59
81
60
82
*`chunks`:
61
83
Storage chunking.
62
-
Must be one of the following.
84
+
Must be one of the following:
63
85
64
86
* Type _array_.
65
87
Chunk sizes in the order of the dimensions.
66
88
The items of the array are of type _integer_.
67
89
68
90
* Disable chunking.
69
-
Its value must be `null`.
91
+
Its value is `null`.
92
+
70
93
71
94
*`fill_value`:
72
95
Storage fill value.
73
-
Must be one of the following.
96
+
Must be one of the following:
74
97
75
98
* Type _number_.
76
99
A number of type and unit of the given storage `dtype`.
77
100
78
101
* Not-a-number. Can be used only if storage `dtype` is `float32` or `float64`.
79
-
Its value must be`"NaN"`.
102
+
Its value is`"NaN"`.
80
103
81
104
* No fill value.
82
-
Its value must be `null`.
105
+
Its value is `null`.
106
+
83
107
84
108
*`scale_factor`:
85
109
Type _number_.
@@ -122,7 +146,7 @@ Variable metadata.
122
146
## `target_dir`
123
147
124
148
Type _string_.
125
-
The URI or local path of the target Zarr dataset. Must be a directory.
149
+
The URI or local path of the target Zarr dataset. Must specify a directory whose parent directory must exist.
126
150
127
151
## `target_storage_options`
128
152
@@ -147,13 +171,13 @@ Options for the filesystem given by the protocol of the URIs of contributing dat
147
171
## `slice_polling`
148
172
149
173
Defines how to poll for contributing datasets.
150
-
Must be one of the following.
174
+
Must be one of the following:
151
175
152
176
* No polling, fail immediately if dataset is not available.
153
-
Its value must be`false`.
177
+
Its value is`false`.
154
178
155
179
* Poll using default values.
156
-
Its value must be`true`.
180
+
Its value is`true`.
157
181
158
182
* Type _object_.
159
183
Polling parameters.
@@ -169,6 +193,7 @@ Must be one of the following.
169
193
Polling timeout in seconds.
170
194
Defaults to `60`.
171
195
196
+
172
197
## `persist_mem_slices`
173
198
174
199
Type _boolean_.
@@ -194,7 +219,7 @@ Defaults to `false`.
194
219
## `profiling`
195
220
196
221
Profiling configuration. Allows for runtime profiling of the processing.
197
-
Must be one of the following.
222
+
Must be one of the following:
198
223
199
224
* Type _boolean_.
200
225
If set, profiling is enabled and output is logged using level `"INFO"`. Otherwise, profiling is disabled.
@@ -227,7 +252,7 @@ Must be one of the following.
227
252
*`restrictions`:
228
253
Type _array_.
229
254
Used to limit the list down to the significant entries in the profiling report. Refer to [Stats.print_stats(*restrictions)](https://docs.python.org/3/library/profile.html#pstats.Stats.print_stats).
230
-
The items of the array must be one of the following.
255
+
The items of the array must be one of the following:
231
256
232
257
* Type _integer_.
233
258
Select a count of lines.
@@ -237,6 +262,8 @@ Must be one of the following.
237
262
238
263
* Type _string_.
239
264
Pattern-match the standard name that is printed.
265
+
266
+
240
267
241
268
## `logging`
242
269
@@ -246,7 +273,7 @@ The key `version` is required.
0 commit comments