Converts a minutes-past-epoch value into a DateTime value.

Namespace: Zeptomoby.OrbitTools.Track
Assembly: Zeptomoby.OrbitTools.Track (in Zeptomoby.OrbitTools.Track.dll) Version: 1.5.0.0 (1.5.0.0)

Syntax

C#
public static DateTime MpeToTime(
	this IOrbit orbit,
	double mpe
)
Visual Basic
<ExtensionAttribute> _
Public Shared Function MpeToTime ( _
	orbit As IOrbit, _
	mpe As Double _
) As DateTime
Visual C++
[ExtensionAttribute]
public:
static DateTime MpeToTime(
	IOrbit^ orbit, 
	double mpe
)

Parameters

orbit
Type: IOrbit
The satellite orbit.
mpe
Type: System..::..Double
The time to convert (minutes-past-epoch).

Return Value

A DateTime object representing the calculated time.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IOrbit. When you use instance method syntax to call this method, omit the first parameter. For more information, see or .

See Also