cf.FieldList.override_calendar

FieldList.override_calendar(calendar, i=False)[source]

For each field, override the calendar of date-time units.

The new calendar need not be equivalent to the original one and the data array elements will not be changed to reflect the new units. Therefore, this method should only be used when it is known that the data array values are correct but the calendar has been incorrectly encoded.

Not to be confused with setting cf.Field.calendar or cf.Field.Units attributes to a calendar which is equivalent to the original calendar

Examples 1:
>>> g = f.override_calendar('noleap')
Parameters:
calendar: str

The new calendar.

i: bool, optional

If True then update the field list in place. By default a new field list is created. In either case, a field list is returned.

Returns:

out: cf.FieldList

Examples 2: