-
Notifications
You must be signed in to change notification settings - Fork 2
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
Add radial velocities table #72
base: main
Are you sure you want to change the base?
Conversation
tests/test_schema.py
Outdated
({"radial_velocity_km_s": None}, ValueError), | ||
({"radial_velocity_error_km_s": None}, None), | ||
({"radial_velocity_error_km_s": 30}, None), | ||
({"radial_velocity_error_km_s": -30}, None), |
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 the uncertainty be allowed to be negative?
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.
Yeah I guess not! I was thinking about the "negative parallaxes are not unexpected" Gaia results, and I must've mixed them up with errors. I can fix this for parallaxes and RVs.
Co-authored-by: Kelle Cruz <kellecruz@gmail.com>
add |
add a module for testing this table — at min check the counts in the table |
The table is being added in #86 . But we'll still need the tests from this PR. |
Addresses #69.
Follows the same procedure as adding the parallax table. add the quantity, its error, some validators, some schema tests.
Tried to correspond to the ingest script: astrodbtoolkit/astrodb_utils#52