CoordinateSystemFlags
Description
Enumeration of coordinate system flags.
The ICoordinateTransform.GeographicToMap object outputs easting and northing by default and the ICoordinateTransform.Flags method is used to apply the behaviour of the MaskXY flags. Analogously, the ICoordinateOperation.CreateCoordinateTransform method uses the given flags to negate the values of CoordinateOperationParameter.Easting, CoordinateOperationParameter.Northing and CoordinateOperationParameter.Height, if necessary.
Public / Constants
MaskXY
Bitmask of flags that refer to the horizontal coordinate system axes.
In terms of the commonly used axis names (Northing, Southing, Easting and Westing), the flags will result in the following X- and Y-axis configurations:
X | Y | Flags ---+---+----------------------------- N | E | FlipXY N | W | FlipXY + Mirror S | E | InverseXY + FlipXY + Mirror S | W | InverseXY + FlipXY E | N | None E | S | Mirror W | N | InverseXY + Mirror W | S | InverseXY ---+---+-----------------------------