| Days2SiderealDays Function | 
Unit
QESBPCSDateTime
Declaration
Function Days2SiderealDays(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 24-hour Days | 
Returns
the Number of Sidereal Days
Category
Date/Time Conversion RoutinesImplementation
 
| function Days2SiderealDays (const Days: Extended): Extended;
begin
     Result := Days * 24 / HrsPerSiderealDay;
End; | 
|  |