cf.GatheredArray¶
- class cf.GatheredArray(*args, **kwargs)[source]¶
Initialisation
- Parameters:
- compressed_array: array_like
The compressed array.
- shape:
tuple
The shape of the uncompressed array.
- compressed_dimensions:
dict
Mapping of compressed to uncompressed dimensions.
A dictionary key is a position of a dimension in the compressed data, with a value of the positions of the corresponding dimensions in the uncompressed data. Compressed array dimensions that are not compressed must be omitted from the mapping.
- Parameter example:
{2: (2, 3)}
Added in version (cfdm): 1.10.0.0
- list_variable:
List
The “list variable” required to uncompress the data, identical to the data of a CF-netCDF list variable.
- compressed_dimension: deprecated at version 1.10.0.0
Use the compressed_dimensions parameter instead.
- source: optional
Convert source, which can be any type of object, to a
GatheredArray
instance.All other parameters, apart from copy, are ignored and their values are instead inferred from source by assuming that it has the
GatheredArray
API. Any parameters that can not be retrieved from source in this way are assumed to have their default value.Note that if
x
is also aGatheredArray
instance thencf.GatheredArray(source=x)
is equivalent tox.copy()
.Added in version (cfdm): 1.10.0.0
- copy:
bool
, optional If True (the default) then deep copy the input parameters prior to initialisation. By default the parameters are not deep copied.
Added in version (cfdm): 1.10.0.0
- size:
int
Deprecated at version 1.10.0.0. Ignored if set.
Number of elements in the uncompressed array.
- ndim:
int
Deprecated at version 1.10.0.0. Ignored if set.
The number of uncompressed array dimensions
Methods
Mapping of compressed to uncompressed dimensions. |
|
The compressed data and list variable. |
|
Return a deep copy of the array. |
|
The attributes of the array. |
|
The calendar of the array. |
|
Return axes that are compressed in the underlying array. |
|
Returns the compressed dimension's position in the array. |
|
Returns the array's compression type. |
|
Return the name of the file containing the compressed data. |
|
Return the list variable for a compressed array. |
|
Return the Subarray class. |
|
The units of the array. |
|
Return the underlying array object. |
|
Create the subarray shapes along each uncompressed dimension. |
|
Return descriptors for every subarray. |
|
Non-data parameters required by the |
|
Convert the data to a |
|
Bring data on disk into memory. |
Attributes
Returns a numpy array containing the uncompressed data. |
|
Cast the data to a specified type. |
|
Returns an independent numpy array with the compressed data. |
|
The data-type of the uncompressed data. |
|
Number of array dimensions. |
|
Shape of the uncompressed data. |
|
Number of elements in the array. |
|
The |