|
4 | 4 |
|
5 | 5 |
|
6 | 6 | class Count(mixin.PropertiesData, cfdm.Count): |
7 | | - """A count variable required to uncompress a ragged array. |
8 | | -
|
9 | | - A collection of features stored using a contiguous ragged array |
10 | | - combines all features along a single dimension (the sample |
11 | | - dimension) such that each feature in the collection occupies a |
12 | | - contiguous block. |
13 | | -
|
14 | | - The information needed to uncompress the data is stored in a count |
15 | | - variable that gives the size of each block. |
16 | | -
|
17 | | - **NetCDF interface** |
18 | | -
|
19 | | - The netCDF variable name of the count variable may be accessed |
20 | | - with the `nc_set_variable`, `nc_get_variable`, `nc_del_variable` |
21 | | - and `nc_has_variable` methods. |
22 | | -
|
23 | | - The name of the netCDF dimension spanned by the count variable's |
24 | | - data may be accessed with the `nc_set_dimension`, |
25 | | - `nc_get_dimension`, `nc_del_dimension` and `nc_has_dimension` |
26 | | - methods. |
27 | | -
|
28 | | - The name of the netCDF sample dimension spanned by the compressed |
29 | | - data (that is stored in the "sample_dimension" netCDF attribute |
30 | | - and which does not correspond to a domain axis construct) may be |
31 | | - accessed with the `nc_set_sample_dimension`, |
32 | | - `nc_get_sample_dimension`, `nc_del_sample_dimension` and |
33 | | - `nc_has_sample_dimension` methods. |
34 | | -
|
35 | | - .. versionadded:: 3.0.0 |
36 | | -
|
37 | | - """ |
38 | | - |
39 | | - def __repr__(self): |
40 | | - """Called by the `repr` built-in function. |
41 | | -
|
42 | | - x.__repr__() <==> repr(x) |
43 | | -
|
44 | | - """ |
45 | | - return super().__repr__().replace("<", "<CF ", 1) |
| 7 | + pass |
0 commit comments