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
+25-19Lines changed: 25 additions & 19 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`
@@ -28,22 +28,23 @@ Defaults to `"time"`.
28
28
## `append_step`
29
29
30
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.
31
+
Must be one of the following:
32
32
33
33
* Arbitrary step size or not applicable.
34
-
Its value must be`null`.
34
+
Its value is`null`.
35
35
36
36
* Monotonically increasing.
37
-
Its value must be`"+"`.
37
+
Its value is`"+"`.
38
38
39
39
* Monotonically decreasing.
40
-
Its value must be`"-"`.
40
+
Its value is`"-"`.
41
41
42
42
* Type _string_.
43
-
A time delta value.
43
+
A positive or negative time delta value, such as `12h`, `2D`, `-1D`.
44
44
45
45
* Type _number_.
46
-
A numerical delta value.
46
+
A positive or negative numerical delta value.
47
+
47
48
Defaults to `null`.
48
49
49
50
## `included_variables`
@@ -80,27 +81,29 @@ Variable metadata.
80
81
81
82
*`chunks`:
82
83
Storage chunking.
83
-
Must be one of the following.
84
+
Must be one of the following:
84
85
85
86
* Type _array_.
86
87
Chunk sizes in the order of the dimensions.
87
88
The items of the array are of type _integer_.
88
89
89
90
* Disable chunking.
90
-
Its value must be `null`.
91
+
Its value is `null`.
92
+
91
93
92
94
*`fill_value`:
93
95
Storage fill value.
94
-
Must be one of the following.
96
+
Must be one of the following:
95
97
96
98
* Type _number_.
97
99
A number of type and unit of the given storage `dtype`.
98
100
99
101
* Not-a-number. Can be used only if storage `dtype` is `float32` or `float64`.
100
-
Its value must be`"NaN"`.
102
+
Its value is`"NaN"`.
101
103
102
104
* No fill value.
103
-
Its value must be `null`.
105
+
Its value is `null`.
106
+
104
107
105
108
*`scale_factor`:
106
109
Type _number_.
@@ -168,13 +171,13 @@ Options for the filesystem given by the protocol of the URIs of contributing dat
168
171
## `slice_polling`
169
172
170
173
Defines how to poll for contributing datasets.
171
-
Must be one of the following.
174
+
Must be one of the following:
172
175
173
176
* No polling, fail immediately if dataset is not available.
174
-
Its value must be`false`.
177
+
Its value is`false`.
175
178
176
179
* Poll using default values.
177
-
Its value must be`true`.
180
+
Its value is`true`.
178
181
179
182
* Type _object_.
180
183
Polling parameters.
@@ -190,6 +193,7 @@ Must be one of the following.
190
193
Polling timeout in seconds.
191
194
Defaults to `60`.
192
195
196
+
193
197
## `persist_mem_slices`
194
198
195
199
Type _boolean_.
@@ -215,7 +219,7 @@ Defaults to `false`.
215
219
## `profiling`
216
220
217
221
Profiling configuration. Allows for runtime profiling of the processing.
218
-
Must be one of the following.
222
+
Must be one of the following:
219
223
220
224
* Type _boolean_.
221
225
If set, profiling is enabled and output is logged using level `"INFO"`. Otherwise, profiling is disabled.
@@ -248,7 +252,7 @@ Must be one of the following.
248
252
*`restrictions`:
249
253
Type _array_.
250
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).
251
-
The items of the array must be one of the following.
255
+
The items of the array must be one of the following:
252
256
253
257
* Type _integer_.
254
258
Select a count of lines.
@@ -258,6 +262,8 @@ Must be one of the following.
258
262
259
263
* Type _string_.
260
264
Pattern-match the standard name that is printed.
265
+
266
+
261
267
262
268
## `logging`
263
269
@@ -267,7 +273,7 @@ The key `version` is required.
0 commit comments