Bases: astropy.time.TimeISO
ISO 8601 compliant date-time format “YYYY-MM-DDTHH:MM:SS.sss...”.
This is the same as TimeISO except for a “T” instead of space between
the date and time.
For example, 2000-01-01T00:00:00.000 is midnight on January 1, 2000.
The allowed subformats are:
- ‘date_hms’: date + hours, mins, secs (and optional fractional secs)
- ‘date_hm’: date + hours, mins
- ‘date’: date
Attributes Summary
Attributes Documentation
-
name = u'isot'
-
subfmts = ((u'date_hms', <_sre.SRE_Pattern object at 0x10034701690>, u'{year:d}-{mon:02d}-{day:02d}T{hour:02d}:{min:02d}:{sec:02d}'), (u'date_hm', <_sre.SRE_Pattern object at 0x3fffa390a208>, u'{year:d}-{mon:02d}-{day:02d}T{hour:02d}:{min:02d}'), (u'date', <_sre.SRE_Pattern object at 0x3fffa3a69c48>, u'{year:d}-{mon:02d}-{day:02d}'))