cf.Data.mask

Data.mask

The boolean missing data mask of the data array.

The boolean mask has True where the data array has missing data and False otherwise.

Returns
Data

TODO

Examples:

>>> d.shape
(12, 73, 96)
>>> m = d.mask
>>> m.dtype
dtype('bool')
>>> m.shape
(12, 73, 96])