cf.Coordinate.attributes

Coordinate.attributes

A dictionary of the attributes which are not CF properties.

Examples

>>> c.attributes
{}
>>> c.foo = 'bar'
>>> c.attributes
{'foo': 'bar'}
>>> c.attributes.pop('foo')
'bar'
>>> c.attributes
{'foo': 'bar'}

Previous topic

cf.Coordinate.array

Next topic

cf.Coordinate.bounds

This Page