cfdm.CellMethod.qualifiers¶
-
CellMethod.
qualifiers
()[source]¶ Return all qualifiers of the cell method.
New in version (cfdm): 1.7.0
See also
- Returns
dict
The qualifiers.
Examples
>>> c = cfdm.CellMethod() >>> c.set_qualifier('where', 'land') >>> c.qualifiers() {'where': 'land'} >>> c.del_qualifier('where') 'land' >>> c.qualifiers() {}