cfdm.Domain.has_data_axes¶
-
Domain.
has_data_axes
(key)[source]¶ Whether the axes spanned by the construct data have been set.
Specifically, whether the domain axis constructs spanned by the data of a metadata construct have been set.
New in version (cfdm): 1.7.0
See also
- Parameters
- key:
str
Specify a metadata construct.
- Parameter example:
key='domainancillary1'
- key:
- Returns
bool
True if domain axis constructs that span the data been set, otherwise False.
Examples
>>> f.set_data_axes(['domainaxis0', 'domainaxis1']) >>> f.get_data_axes() ('domainaxis0', 'domainaxis1') >>> f.del_data_axes() ('domainaxis0', 'domainaxis1') >>> print(f.del_dataxes(None)) None >>> print(f.get_data_axes(default=None)) None