cfdm.RaggedContiguousArray¶
-
class
cfdm.
RaggedContiguousArray
(compressed_array=None, shape=None, size=None, ndim=None, count_variable=None)[source]¶ Bases:
cfdm.data.abstract.compressedarray.CompressedArray
,cfdm.data.mixin.ragged.RaggedContiguous
An underlying contiguous ragged array.
A collection of features stored using a contiguous ragged array combines all features along a single dimension (the “sample dimension”) such that each feature in the collection occupies a contiguous block.
The information needed to uncompress the data is stored in a “count variable” that gives the size of each block.
It is assumed that the compressed dimension is the left-most dimension in the compressed array.
New in version 1.7.0.
Initialization
Parameters: - compressed_array:
Data
The compressed data.
- shape:
tuple
The uncompressed array dimension sizes.
- size:
int
Number of elements in the uncompressed array.
- ndim:
int
The number of uncompressed array dimensions
- count_variable:
Count
The count variable required to uncompress the data, corresponding to a CF-netCDF count variable.
- compressed_array:
Inspection¶
Methods
get_compressed_axes |
Return axes that are compressed in the underlying array. |
get_compressed_dimension |
Return the position of the compressed dimension in the compressed array. |
get_compression_type |
The type of compression that has been applied to the underlying array. |
get_count |
Return the countcount_va variable for a compressed array. |
Attributes
array |
Return an independent numpy array containing the uncompressed data. |
compressed_array |
Return an independent numpy array containing the compressed data. |
dtype |
Data-type of the data elements. |
ndim |
The number of dimensions of the uncompressed data. |
shape |
Shape of the uncompressed data. |
size |
Number of elements in the uncompressed data. |
Special¶
Methods
__array__ |
The numpy array interface. |
__deepcopy__ |
Called by the copy.deepcopy function. |
__getitem__ |
x.__getitem__(indices) <==> x[indices] |
__repr__ |
Called by the repr built-in function. |
__str__ |
Called by the str built-in function. |