cf.Field.flag_masks

Field.flag_masks

The flag_masks CF attribute.

Stored as a 1-d numpy array but may be set as array-like object.

Examples

>>> f.flag_masks = numpy.array([1, 2, 4], dtype='int8')
>>> f.flag_masks
array([1, 2, 4], dtype=int8)
>>> f.flag_masks = 1
>>> f.flag_masks
array([1])

Previous topic

cf.Field._FillValue

Next topic

cf.Field.flag_meanings

This Page