cf.CoordinateConversion.copy¶
- CoordinateConversion.copy()[source]¶
Return a deep copy.
f.copy()is equivalent tocopy.deepcopy(f).Added in version (cfdm): 1.7.0
- Returns:
CoordinateConversionThe deep copy.
Examples
>>> f = cf.CoordinateConversion() >>> g = f.copy()