cf.Count.calendar¶
-
Count.
calendar
¶ The calendar CF property.
The calendar used for encoding time data. See http://cfconventions.org/latest.html for details.
Examples:
>>> f.calendar = 'noleap' >>> f.calendar 'noleap' >>> del f.calendar
>>> f.set_property('calendar', 'proleptic_gregorian') >>> f.get_property('calendar') 'proleptic_gregorian' >>> f.del_property('calendar') 'proleptic_gregorian' >>> f.has_property('calendar') False