cf.CoordinateReference.copy¶
-
CoordinateReference.
copy
(domain=None)¶ Return a deep copy.
c.copy()
is equivalent tocopy.deepcopy(c)
.Examples 1: >>> d = c.copy()
Parameters: domain : cf.Domain, optional
Returns: - out :
The deep copy.
Examples 2: >>> domain <CF Domain: (110, 106, 3, 5)> >>> d = c.copy(domain=domain)