Skip to content
Snippets Groups Projects
Commit 46349c1b authored by Clément Jonglez's avatar Clément Jonglez
Browse files

Force python datetime to stay at second=59.999999 during a leap second

parent 943cae0f
No related branches found
No related tags found
1 merge request!2Issue 423: absolutedate_to_datetime behaviour during leap second
......@@ -104,13 +104,19 @@ def absolutedate_to_datetime(orekit_absolutedate):
or_date = or_comp.getDate()
or_time = or_comp.getTime()
seconds = or_time.getSecond()
seconds_int = int(math.floor(seconds))
microseconds = int(1000000.0 * (seconds - math.floor(seconds)))
if seconds_int > 59: # This can take the value 60 during a leap second
seconds_int = 59
microseconds = 999999 # Also modifying microseconds to ensure that the time flow stays monotonic
return datetime(or_date.getYear(),
or_date.getMonth(),
or_date.getDay(),
or_time.getHour(),
or_time.getMinute(),
int(math.floor(seconds)),
int(1000000.0 * (seconds - math.floor(seconds))))
seconds_int,
microseconds)
def datetime_to_absolutedate(dt_date):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment