IAgODProvideTrackingDataLib 13Send comments on this topic.
MinAfterMidnight Property (IAgODGenericObs)
See Also
Windows





Windows & Linux

Description

As an alternative to inputting a date string, we provide the option of inputting time directly in our internal units of julian day number and minutes after midnight, in TDT time. The JulianDay is the whole number corresponding to midnight of a given day, and the minutes after midnight must be converted to TDT.

The defaults are 0 for JulianDay and 0.0 for MinutesAfterMidnight.

Thus, to input a date of 06 Jun 2002 00:00:00, one would use the perl command syntax:

$pObs->{JulianDay} = 2452431;
$pObs->{MinAfterMidnight} = 1.06973333333333;

Property type

Read-write property

Syntax

[Visual Basic .NET]
Public Property MinAfterMidnight() As Double
[C#]
public double MinAfterMidnight {get; set;}
[Managed C++]
public: __property double get_MinAfterMidnight();
public: __property void set_MinAfterMidnight( double );
[Unmanaged C++]
public: HRESULT get_MinAfterMidnight(
    double * pVal
);
public: HRESULT put_MinAfterMidnight(
    double newVal
);
[Java]
public double getMinAfterMidnight();
public void setMinAfterMidnight(
    double
);
[Python - STK API ]
@property
def MinAfterMidnight(self) -> float:

@MinAfterMidnight.setter
def MinAfterMidnight(self, newVal:float) -> None:

See Also

© 2025 Analytical Graphics, Inc. All Rights Reserved.