cf.DimensionCoordinate.T¶
-
DimensionCoordinate.T¶ True if and only if the coordinates are for a CF T axis.
CF T axis coordinates are for a reference time axis hhave one or more of the following:
- The
axisproperty has the value'T' - Units of reference time (see
cf.Units.isreftimefor details) - The
standard_nameproperty is one of'time'or'forecast_reference_time'longitude'
Examples: >>> c.Units <CF Units: seconds since 1992-10-8> >>> c.T True
>>> c.standard_name in ('time', 'forecast_reference_time') True >>> c.T True
>>> c.axis == 'T' and c.T True
- The