37
37
An optional key that gives the starting coordinate of the selection to be updated. The
38
38
start value can either be an integer (for 1 dimensional arrays) or an array of integers
39
39
where the length of the array is equal to the number of dimensions of the dataset. Each
40
- value must be greater than equal to zero and less than the extent of the corresponding
40
+ value must be greater than or equal to zero and less than the extent of the corresponding
41
41
dimension.
42
42
43
43
If start is not provided, the selection starts at 0 for each dimension.
@@ -47,22 +47,22 @@ stop:
47
47
An optional key that gives the ending coordinate of the selection to be updated.
48
48
The stop value can either be an integer (for 1 dimensional arrays) or an array of integers
49
49
where the length of the array is equal to the number of dimensions of the dataset. Each
50
- value must be greater than equal to start (or zero if start is not provided) and less than
50
+ value must be greater than or equal to start (or zero if start is not provided) and less than
51
51
the extent of the corresponding dimension.
52
52
53
53
step:
54
54
^^^^^
55
55
An optional key that gives the step value (i.e. the increment of the coordinate for
56
56
each supplied value). The step value can either be an integer (for 1 dimensional arrays) or
57
57
an array of integers where the length of the array is equal to the number of dimensions of
58
- the dataset. Each value must be greater than equal to start (or zero if start is not
58
+ the dataset. Each value must be greater than or equal to start (or zero if start is not
59
59
provided) and less than or equal to the extent of the corresponding dimension.
60
60
61
61
points:
62
62
^^^^^^^
63
63
64
- An optional key that contains a list of array elements to be updated. Each element of the list should be an
65
- an integer if the dataset is of rank 1 or an n-element list (which n is the dataset rank) is the dataset
64
+ An optional key that contains a list of array elements to be updated. Each element of the list should be
65
+ an integer if the dataset is of rank 1 or an n-element list (where n is the dataset rank) if the dataset
66
66
rank is greater than 1. If points is provided (indicating a point selection update), then start, stop,
67
67
and step (used for hyperslab selection) should not be provied.
68
68
@@ -96,7 +96,7 @@ No response elements are returned.
96
96
Special Errors
97
97
--------------
98
98
99
- The implementation of the operation does not return special errors. For general
99
+ This implementation of the operation does not return special errors. For general
100
100
information on standard error codes, see :doc: `../CommonErrorResponses `.
101
101
102
102
Examples
@@ -106,7 +106,7 @@ Examples
106
106
Sample Request
107
107
--------------
108
108
109
- This example writes a 10x10 integer datasets with the values 0-99 inclusive.
109
+ This example writes a 10x10 integer dataset with the values 0-99 inclusive.
110
110
111
111
.. code-block :: http
112
112
0 commit comments