cfdm.core.Domain.has_construct¶
- Domain.has_construct(key)[source]¶
Whether a metadata construct exists.
Added in version (cfdm): 1.7.0
See also
- Parameters:
- key:
str
The identifier of the metadata construct.
- Parameter example:
key='auxiliarycoordinate0'
- key:
- Returns:
bool
True if the construct exists, otherwise False.
Examples
>>> f.has_construct('dimensioncoordinate1') True
>>> f.has_construct('dimensioncoordinate99') False