cf.DimensionCoordinate.apply_masking¶
-
DimensionCoordinate.
apply_masking
(bounds=True, inplace=False)[source]¶ Apply masking as defined by the CF conventions.
Masking is applied according to any of the following criteria that are applicable:
where data elements are equal to the value of the
missing_value
property;where data elements are equal to the value of the
_FillValue
property;where data elements are strictly less than the value of the
valid_min
property;where data elements are strictly greater than the value of the
valid_max
property;where data elements are within the inclusive range specified by the two values of
valid_range
property.
If any of the above properties have not been set the no masking is applied for that method.
The cell bounds, if any, are also masked according to the same criteria as the parent constuct. If, however, any of the relevant properties are explicitly set on the bounds instance then their values will be used in preference to those of the parent contsruct.
Elements that are already masked remain so.
Note
If using the
apply_masking
method on a construct that has been read from a dataset with themask=False
parameter to theread
function, then the mask defined in the dataset can only be recreated if themissing_value
,_FillValue
,valid_min
,valid_max
, andvalid_range
properties have not been updated.New in version 1.8.2.
See also
- Parameters
- Returns
A new instance with masked values, or
None
if the operation was in-place.
Examples:
TODO DCH