Table of Contents

Struct GeodeticElements

Namespace
NominalSystems.Universe
Assembly
NominalSystems.Universe.dll

[Nominal] This structure contains the set of Geographic elements that exist around a particular body.


public struct GeodeticElements

Constructors

GeodeticElements()

Default constructor

public GeodeticElements()

GeodeticElements(Vector3)

Defines a constructor that takes in the coordinates from a vector form.

public GeodeticElements(Vector3 values)

Parameters

values Vector3

The list of values as lat, lon, alt

GeodeticElements(double, double, double)

Constructor that sets up the geographical elements with a series of parameters.

public GeodeticElements(double latitude, double longitude, double altitude)

Parameters

latitude double

[deg] The latitude about the body

longitude double

[deg] The longitude about the body

altitude double

[m] The distance above the surface of the body

Fields

Altitude

[m] The distance above the surface of the body

public double Altitude

Field Value

double

Latitude

[deg] The latitude about the body

public double Latitude

Field Value

double

Longitude

[deg] The longitude about the body

public double Longitude

Field Value

double

Methods

ToString()

public override readonly string ToString()

Returns

string

Operators

implicit operator Vector3(GeodeticElements)

Converts a Geodetic Elements structure into a Vector3

public static implicit operator Vector3(GeodeticElements elems)

Parameters

elems GeodeticElements

The Geodetic Elements to convert

Returns

Vector3