A CF-compliant earth science data analysis library
Data.
copy
Return a deep copy.
d.copy() is equivalent to copy.deepcopy(d).
d.copy()
copy.deepcopy(d)
bool
If False then do not copy the array. By default the array is copied.
Data
The deep copy.
Examples:
>>> e = d.copy() >>> e = d.copy(array=False)