-
Notifications
You must be signed in to change notification settings - Fork 38
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
Correctly fix the wcs preferential order REL > IMG, GAIA*3 > GAIA[2|1] #1645
Correctly fix the wcs preferential order REL > IMG, GAIA*3 > GAIA[2|1] #1645
Conversation
Codecov ReportPatch coverage:
Additional details and impacted files@@ Coverage Diff @@
## master #1645 +/- ##
=======================================
Coverage 32.40% 32.40%
=======================================
Files 159 159
Lines 35049 35049
=======================================
Hits 11358 11358
Misses 23691 23691
☔ View full report in Codecov by Sentry. |
954ffaf
to
ab64039
Compare
@@ -187,8 +187,8 @@ | |||
envvar_reset_idctab_name = "PIPELINE_RESET_IDCTAB" | |||
|
|||
# Order of preference for common WCS solutions - brute force choice of the GAIA catalog preference | |||
wcs_preference = ['IDC_?????????-FIT_REL_GAIA*3', 'IDC_?????????-FIT_REL_GAIADR2', 'IDC_?????????-FIT_REL_GAIADR1', | |||
'IDC_?????????-FIT_IMG_GAIA*3', 'IDC_?????????-FIT_IMG_GAIADR2', 'IDC_?????????-FIT_IMG_GAIADR1', | |||
wcs_preference = ['IDC_?????????-FIT_REL_GAIA*3', 'IDC_?????????-FIT_IMG_GAIA*3', 'IDC_?????????-FIT_REL_GAIADR2', |
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.
It would be useful to add a sentence describing the order, like what you wrote in the comment:
Enforce the chosen order for the WCS preferential solution for all exposures in a dataset. REL is better than IMG, and GAIA*3 is better than GAIA 2 or GAIA1.
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.
Address in commit 94ce39d.
Enforce the chosen order for the WCS preferential solution for all exposures in a dataset. REL is better than IMG, and GAIA*3 is better than GAIA 2 or GAIA1.