Create a new earth-centred, earth-fixed (ECEF) reference from the given parameters and the given reference ellipsoid.

Namespace:  DotNetCoords
Assembly:  DotNetCoords (in DotNetCoords.dll) Version: 1.0.0.1 (1.0.0.1)

Syntax

C#
public ECEFRef(
	double x,
	double y,
	double z,
	Datum datum
)
Visual Basic (Declaration)
Public Sub New ( _
	x As Double, _
	y As Double, _
	z As Double, _
	datum As Datum _
)
Visual C++
public:
ECEFRef(
	double x, 
	double y, 
	double z, 
	Datum^ datum
)

Parameters

x
Type: System..::.Double
The x co-ordinate.
y
Type: System..::.Double
The y co-ordinate.
z
Type: System..::.Double
The z co-ordinate.
datum
Type: DotNetCoords.Datum..::.Datum
The datum.

See Also