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 JulianDay() As Integer
|
[C#] |
---|
public int JulianDay {get; set;}
|
[Managed C++] |
---|
public: __property int get_JulianDay(); public: __property void set_JulianDay(
int
);
|
[Unmanaged C++] |
---|
public: HRESULT get_JulianDay(
long * pVal
);
public: HRESULT put_JulianDay(
long newVal
);
|
[Java] |
---|
public int getJulianDay();
public void setJulianDay(
int
);
|
[Python - STK API ] |
---|
@property
def JulianDay(self) -> int:
@JulianDay.setter
def JulianDay(self, newVal:int) -> None:
|
See Also