SiderealDays2Days Function |
Unit
QESBPCSDateTime
Declaration
Function SiderealDays2Days(const Days: Extended): Extended;
Description
A Sidereal Day can be thought of as the time taken for the stars to return to their same positions. See HrsPerSiderealDay.
Parameters |
Value | Number of Sidereal Days |
Returns
the Number of 24-hour Days
Category
Date/Time Conversion RoutinesImplementation
function SiderealDays2Days (const Days: Extended): Extended; begin Result := Days * HrsPerSiderealDay / 24; End; |
|