cfdm.core.DomainAxis.copy

DomainAxis.copy()[source]

Return a deep copy.

f.copy() is equivalent to copy.deepcopy(f).

New in version (cfdm): 1.7.0

Returns
DomainAxis

The deep copy.

Examples

>>> f = cfdm.core.DomainAxis()
>>> g = f.copy()