File tree Expand file tree Collapse file tree 3 files changed +15
-10
lines changed
Expand file tree Collapse file tree 3 files changed +15
-10
lines changed Original file line number Diff line number Diff line change 11# Command Line Interface Reference
22
3-
4-
53```
64Usage: zappend [OPTIONS] [SLICES]...
75
8- Create or update a Zarr dataset TARGET from slice datasets SLICES.
6+ Create or update a Zarr datacube TARGET from slice datasets SLICES.
7+
8+ The zappend command concatenates the dataset SLICES along a given append
9+ dimension, e.g., `"time"` (the default) for geospatial satellite
10+ observations. Each append step is atomic, that is, the append operation is a
11+ transaction that can be rolled back, in case the append operation fails.
12+ This ensures integrity of the target data cube given by TARGET or in CONFIG.
913
1014Options:
1115 -c, --config CONFIG Configuration JSON or YAML file. If multiple are
Original file line number Diff line number Diff line change @@ -38,8 +38,9 @@ def zappend(
3838 """
3939 Robustly create or update a Zarr dataset from dataset slices.
4040
41- It concatenates the dataset slices from given `slices` along a given append
42- dimension, e.g., `"time"` (the default) for geospatial satellite observations.
41+ The `zappend` function concatenates the dataset slices from given `slices` along a
42+ given append dimension, e.g., `"time"` (the default) for geospatial satellite
43+ observations.
4344 Each append step is atomic, that is, the append operation is a transaction
4445 that can be rolled back, in case the append operation fails.
4546 This ensures integrity of the target data cube `target_dir` given in `config`
Original file line number Diff line number Diff line change @@ -43,11 +43,11 @@ def zappend(
4343):
4444 """Create or update a Zarr datacube TARGET from slice datasets SLICES.
4545
46- It concatenates the dataset SLICES along a given append dimension, e.g., `"time"`
47- (the default) for geospatial satellite observations. Each append step is atomic,
48- that is, the append operation is a transaction that can be rolled back, in case
49- the append operation fails. This ensures integrity of the target data cube given
50- by TARGET or in CONFIG.
46+ The zappend command concatenates the dataset SLICES along a given append dimension,
47+ e.g., `"time"` (the default) for geospatial satellite observations.
48+ Each append step is atomic, that is, the append operation is a transaction that can
49+ be rolled back, in case the append operation fails. This ensures integrity of the
50+ target data cube given by TARGET or in CONFIG.
5151 """
5252
5353 if help_config :
You can’t perform that action at this time.
0 commit comments