-
-
Notifications
You must be signed in to change notification settings - Fork 1
caltime_tai.3
caltime_tai - convert calendar dates and times
#include <caltime.h>
#include <tai.h>
void caltime_tai(&ct,&t);
void caltime_utc(&ct,&t,&weekday,&yearday);
struct caltime ct;
struct tai t;
int *weekday;
int *yearday;
caltime_tai reads a date, time, and UTC offset from ct. It puts the corresponding TAI64 label into t.
caltime_utc reads a TAI64 label from t. It puts the corresponding date and time into ct, with UTC offset 0.
caltime_utc fills in weekday and yearday the same way as caldate_frommjd.
The sequence of TAI64 labels has been determined for the next few hundred billion years. The same is not true, however, for calendar dates and times. New leap seconds are added every year or two, as discussed in leapsecs(3); and the Gregorian calendar will change in a few thousand years, as discussed in caldate_mjd(3). This means that caltime_tai and caltime_utc are not useful for dates far in the future.