****************** Time (`sbpy.time`) ****************** Ephemeris time ============== References to times in `sbpy` use the `astropy.time.Time` class. For consistency with other tools, especially JPL Horizons and NAIF SPICE, `sbpy` defines an "Ephemeris Time" format as the number of seconds from the J2000 epoch in the TDB scale. To use this enhancement, simply import the `sbpy.time` sub-module, and pass the format "et" when initializing a ``Time`` object: .. doctest:: >>> from astropy.time import Time >>> import sbpy.time >>> >>> j2000 = Time(0, format="et") >>> j2000.iso '2000-01-01 12:00:00.000' >>> Time(759307746.954761, format="et")