cfdm.core.CellMethod.qualifiers

CellMethod.qualifiers()[source]

Return all qualifiers of the cell method.

New in version (cfdm): 1.7.0

Returns
dict

The qualifiers.

Examples

>>> c = cfdm.core.CellMethod()
>>> c.set_qualifier('where', 'land')
>>> c.qualifiers()
{'where': 'land'}
>>> c.del_qualifier('where')
'land'
>>> c.qualifiers()
{}