cf.Coordinate.Y¶
-
Coordinate.Y¶ True if and only if the coordinates are for a CF Y axis.
CF Y axis coordinates are for a horizontal axis and have one or more of the following:
- The
axisproperty has the value'Y' - Units of latitude (see
cf.Units.islatitudefor details) - The
standard_nameproperty is one of'latitude','projection_y_coordinate'or'grid_latitude'
Examples: >>> c.Units <CF Units: degree_north> >>> c.Y True
>>> c.standard_name == 'latitude' >>> c.Y True
>>> c.axis 'Y' >>> c.Y True
- The