cf.FieldList.select_by_naxes¶
-
FieldList.select_by_naxes(*naxes)[source]¶ Select field constructs by property.
To find the inverse of the selection, use a list comprehension with
match_by_naxesmethod of the field constucts. For example, to select all field constructs which do not have 3-dimensional data:>>> gl = cf.FieldList(f for f in fl if not f.match_by_naxes(3))
New in version 3.0.0.
See also
select,select_by_identity,select_by_construct,select_by_property,select_by_rank,select_by_units- Parameters
- naxes: optional
Select field constructs whose data spans a particular number of domain axis constructs.
A number of domain axis constructs is given by an
int.If no numbers are provided then all field constructs are selected.
- Returns
FieldListThe matching field constructs.
Examples:
TODO