Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
Orekit Python Wrapper
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Orekit Labs
Orekit Python Wrapper
Merge requests
!2
Issue 423: absolutedate_to_datetime behaviour during leap second
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Issue 423: absolutedate_to_datetime behaviour during leap second
yzokras/python-wrapper:issue-423-leap-seconds
into
master
Overview
0
Commits
1
Pipelines
0
Changes
1
Merged
Clément Jonglez
requested to merge
yzokras/python-wrapper:issue-423-leap-seconds
into
master
4 years ago
Overview
0
Commits
1
Pipelines
0
Changes
1
Expand
This is a proposal to fix
#423 (closed)
.
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
46349c1b
1 commit,
4 years ago
1 file
+
8
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
python_files/pyhelpers.py
+
8
−
2
Options
@@ -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
,
micro
seconds
)
def
datetime_to_absolutedate
(
dt_date
):
Loading