Skip to content
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

RCAL-853: Give VA scale factor a reasonable default #396

Merged
2 changes: 1 addition & 1 deletion src/roman_datamodels/maker_utils/_common_meta.py
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ def mk_velocity_aberration(**kwargs):
vab = stnode.VelocityAberration()
vab["ra_reference"] = kwargs.get("ra_reference", NONUM)
vab["dec_reference"] = kwargs.get("dec_reference", NONUM)
vab["scale_factor"] = kwargs.get("scale_factor", NONUM)
vab["scale_factor"] = kwargs.get("scale_factor", 1)
braingram marked this conversation as resolved.
Show resolved Hide resolved

return vab

Expand Down
Loading