cf.Field.del_data_axes¶
-
Field.
del_data_axes
(key=None, default=ValueError())[source]¶ Removes the keys of the axes spanned by the construct data.
Specifically, removes the keys of the domain axis constructs spanned by the data of the field or of a metadata construct.
New in version (cfdm): 1.7.0
See also
- Parameters
- Returns
tuple
The removed keys of the domain axis constructs spanned by the data.
Examples:
>>> f = cf.example_field(0) >>> f.get_data_axes() ('domainaxis0', 'domainaxis1') >>> f.get_data_axes(key='dimensioncoordinate2') ('domainaxis2',) >>> f.has_data_axes() True
>>> f.del_data_axes() ('domainaxis0', 'domainaxis1') >>> f.has_data_axes() False >>> f.get_data_axes(default='no axes') 'no axes'