cf.FieldList.standard_name

FieldList.standard_name

The standard_name CF property of each field.

fl.standard_name is equivalent to cf.List(f.standard_name for f in fl).

fl.standard_name = value is equivalent to for f in fl: f.standard_name = value.

del fl.standard_name is equivalent to for f in fl: del f.standard_name.

See cf.Field.standard_name for details.

Previous topic

cf.FieldList.standard_error_multiplier

Next topic

cf.FieldList.title

This Page