CartographicEquals Method (Cartographic) |
Indicates whether another instance of this type is exactly equal to this instance.
Namespace:
AGI.Foundation.Coordinates
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public bool Equals(
Cartographic other
)
Public Function Equals (
other As Cartographic
) As Boolean
public:
virtual bool Equals(
Cartographic other
) sealed
abstract Equals :
other : Cartographic -> bool
override Equals :
other : Cartographic -> bool
Parameters
- other
- Type: AGI.Foundation.CoordinatesCartographic
The instance to compare to this instance.
Return Value
Type:
Boolean if
other represents the same value as this instance; otherwise
.
Implements
IEquatableTEquals(T)Remarks
This method performs a strict comparison of each coordinate value.
Consider using
IsEquivalent(Cartographic) to account for longitude ambiguity for points at the poles.
See Also