A Python reference implementation of the CF data model
Data.
to_memory
Bring data on disk into memory.
There is no change to data that is already in memory.
bool
If True then do the operation in-place and return None.
None
Data
A copy of the data in memory, or None if the operation was in-place.
Examples
>>> f = cfdm.example_field(4) >>> f.data <Data(3, 26, 4): [[[290.0, ..., --]]] K> >>> f.data.to_memory()