cf.FieldList.title

FieldList.title

The title CF property of each field.

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

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

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

See cf.Field.title for details.

Previous topic

cf.FieldList.standard_name

Next topic

cf.FieldList.units

This Page