Skip to content

Commit

Permalink
RCAL-853: Give VA scale factor a reasonable default (#396)
Browse files Browse the repository at this point in the history
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
  • Loading branch information
stscieisenhamer and pre-commit-ci[bot] authored Nov 25, 2024
1 parent ab68c35 commit 3fd2b3d
Showing 1 changed file with 1 addition and 1 deletion.
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)

return vab

Expand Down

0 comments on commit 3fd2b3d

Please sign in to comment.