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
Commits
460ccc42
Commit
460ccc42
authored
4 years ago
by
Petrus Hyvönen
Browse files
Options
Downloads
Plain Diff
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
Branches containing commit
No related tags found
1 merge request
!2
Issue 423: absolutedate_to_datetime behaviour during leap second
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
python_files/pyhelpers.py
+8
-2
8 additions, 2 deletions
python_files/pyhelpers.py
with
8 additions
and
2 deletions
python_files/pyhelpers.py
+
8
−
2
View file @
460ccc42
...
...
@@ -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
):
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment