cf.CellMethod.set_qualifier

CellMethod.set_qualifier(qualifier, value, copy=True)[source]

Set a qualifier of the cell method.

New in version 1.7.0.

Parameters
qualifier: str

The name of the qualifier to be set.

value:

The value for the qualifier.

copy: bool, optional

If True then set a deep copy of value.

Returns

None

Examples:

>>> c.set_qualifier('where', 'land')
>>> c.get_qualifier('where')
'land'