-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix for ephemeris phase axis #37
Conversation
@@ -116,7 +116,7 @@ | |||
"eph = lcviz.plugins['Ephemeris']\n", | |||
"eph.period = morris2017_period\n", | |||
"eph.t0 = (\n", | |||
" (morris2017_epoch - reference_time).to_value(time_coord.unit) % eph.period\n", | |||
" (morris2017_epoch - reference_time).to_value(time_coordinates.unit) % eph.period\n", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry I didn't catch this bug earlier.
Codecov ReportPatch coverage:
Additional details and impacted files@@ Coverage Diff @@
## main #37 +/- ##
==========================================
+ Coverage 84.53% 85.65% +1.11%
==========================================
Files 24 24
Lines 1080 1122 +42
==========================================
+ Hits 913 961 +48
+ Misses 167 161 -6
☔ View full report in Codecov by Sentry. |
06ff36d
to
417fea9
Compare
Looking back at this section of code (in |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Seems to have done the trick - thanks!
Fix for phase axis
ComponentID
s that restores ephemeris support. 🐱.