Viewing a single comment thread. View all comments

dv_ t1_ix0dk3v wrote

Atomic time is great for timestamps that have zero relation to localtime. But if you want to be able to convert to localtime, UTC is easier, since it only involves an offset. Atomic time to localtime also requires fitting in the leap seconds. This is also the reason why scheduling stuff based on atomic time is impractical - you won't know when leap seconds will be inserted in the future.

9