Oct-07-2025, 01:04 PM
Hi,
I am using python 3.12 and I would like to parse string as '2025:092:43200' into a datetime object.
2025 is the year (%Y), 092 is the day of the year (%j) and 43200 is the second of the day.
The last one, second of the day, is not supported by strptime and strftime so I have to parse my date into a datetime object manually.
I wonder if this format is planned to be supported. It is used in SINEX (Solution INdependent EXchange) file format.
I am using python 3.12 and I would like to parse string as '2025:092:43200' into a datetime object.
2025 is the year (%Y), 092 is the day of the year (%j) and 43200 is the second of the day.
The last one, second of the day, is not supported by strptime and strftime so I have to parse my date into a datetime object manually.
I wonder if this format is planned to be supported. It is used in SINEX (Solution INdependent EXchange) file format.
