Skip to content
Snippets Groups Projects
Commit 460ccc42 authored by Petrus Hyvönen's avatar Petrus Hyvönen
Browse files

Merge branch 'issue-423-leap-seconds' into 'master'

Issue 423: absolutedate_to_datetime behaviour during leap second

Closes #423

See merge request !2
parents 943cae0f 46349c1b
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