Click or drag to resize

Cartographic Structure

A set of curvilinear 3-dimensional coordinates.

Namespace:  AGI.Foundation.Coordinates
Assembly:  AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.1.418.0 (24.1.418.0)
Syntax
public struct Cartographic : IEquatable<Cartographic>, 
	IEquatableEpsilon<Cartographic>

The Cartographic type exposes the following members.

Constructors
  NameDescription
Public methodCartographic(Double)
Initializes a set of Cartographic coordinates from the first 3 consecutive elements in the provided array.
Public methodCartographic(Double, Int32)
Initializes a set of Cartographic coordinates from the provided array.
Public methodCartographic(Double, Double, Double)
Initializes a set of Cartographic coordinates from the provided values.
Top
Properties
  NameDescription
Public propertyHeight
Gets the linear coordinate measured perpendicular to the surface of the ellipsoid and positive above the surface.
Public propertyIsUndefined
Gets a value indicating whether or not any of the coordinates for this instance have the value NaN.
Public propertyItem
Gets the value of the specified element with index of 0, 1, and 2 corresponding to the coordinates Longitude, Latitude, and Height.
Public propertyLatitude
Gets the angular coordinate measured perpendicular to the equatorial plane.
Public propertyLength
Gets the number of elements in this set of coordinates.
Public propertyLongitude
Gets the angular coordinate lying in the equatorial plane of the ellipsoid and measured from the prime meridian.
Public propertyStatic memberUndefined
Gets a set of Cartographic coordinates with values of NaN.
Public propertyStatic memberZero
Gets a set of Cartographic coordinates representing the zero vector.
Top
Methods
  NameDescription
Public methodEquals(Cartographic)
Indicates whether another instance of this type is exactly equal to this instance.
Public methodEquals(Object)
Indicates whether another object is exactly equal to this instance.
(Overrides ValueTypeEquals(Object).)
Public methodEqualsEpsilon
Indicates whether each coordinate value of another instance of this type is within the required tolerance of the corresponding coordinate value of this instance.
Public methodGetHashCode
Returns a hash code for this instance, which is suitable for use in hashing algorithms and data structures like a hash table.
(Overrides ValueTypeGetHashCode.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodIsAtPole
Indicates whether the absolute value of the Latitude equals HalfPi.
Public methodIsAtPole(Double)
Indicates whether the absolute value of the Latitude equals HalfPi within the provided tolerance.
Public methodIsEquivalent(Cartographic)
Indicates whether another instance of this type is mathematically equivalent to this instance. Instances are equivalent if each coordinate value of one instance is equal to the corresponding coordinate value of the other instance, or if both points are at the same pole.
Public methodIsEquivalent(Cartographic, Double)
Indicates whether another instance of this type is mathematically equivalent to this instance, within the required tolerance. Instances are equivalent if each coordinate value of one instance is equal to the corresponding coordinate value of the other instance, or if both points are at the same pole.
Public methodToString
Returns the string representation of the value of this instance.
(Overrides ValueTypeToString.)
Top
Operators
  NameDescription
Public operatorStatic memberEquality
Returns if the two instances are exactly equal.
Public operatorStatic memberInequality
Returns if the two instances are not exactly equal.
Top
See Also