cf.AuxiliaryCoordinate.X¶
-
AuxiliaryCoordinate.X¶ True if and only if the coordinates are for a CF X axis.
CF X axis coordinates are for a horizontal axis have one or more of the following:
- The
axisproperty has the value'X' - Units of longitude (see
cf.Units.islongitudefor details) - The
standard_nameproperty is one of'longitude','projection_x_coordinate'or'grid_longitude'
Examples: >>> c.Units <CF Units: degreeE> >>> c.X True
>>> c.standard_name 'longitude' >>> c.X True
>>> c.axis == 'X' and c.X True
- The