-
Notifications
You must be signed in to change notification settings - Fork 0
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
Minor fixes #103
Minor fixes #103
Conversation
@@ -881,7 +881,7 @@ def get_agasc_id_stats(agasc_id, obs_status_override=None, tstop=None): | |||
stats['mean_corrected'] = np.nan | |||
stats['weighted_mean'] = np.nan | |||
|
|||
star = get_star(agasc_id, date=all_telem['times'][0]) | |||
star = get_star(agasc_id) |
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.
Should this have use_supplement=False
? Otherwise the MAG_ACA
below will be from the supplement if available.
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.
I thought we'd captured that as a separate issue but I guess I forgot to do so.
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.
This is now #106
I looked through each commit and they all look reasonable. Thanks for the atomic commits and helpful commit messages. For 4e98da8, I couldn't easily see what this is doing without opening the code, but if functional testing shows that it closes #87 then 👍 . So this probably just needs basic functional testing. |
… are not good observations (Fixes #87)
…mined from the intersection of aca_l0.slot_data and the times of AOACMAG in the MSID set times (as opposed to fetching just AOACMAG to determine time). Fixes #108
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.
When you think it's ready.
Description
This PR introduces some small changes:
use_supplement=False
in supplement processing code #106)cheta.fetch
differed from the number of samples frommica.archive.l0.get_slot_data
. Now the times are the intersection of these times by construction. (Followup to the "mismatch in telemetry between aca_l0 and cheta" issue #108)Testing
open supplement_reports/weekly/latest/index.html
Fixes #79
Fixes #87
Fixes #88
Fixes #93
Fixes #98
Fixes #99
Fixes #106
Fixes #108