Skip to content

Commit

Permalink
increase v3 delta to fix roll precision
Browse files Browse the repository at this point in the history
  • Loading branch information
stscieisenhamer committed Oct 25, 2024
1 parent 6436851 commit 7c45283
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion romanisim/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ def update_aperture_and_wcsinfo_metadata(metadata, gwcs):
v2v3 = distortion(*center)
radec = gwcs(*center)
t2sky = gwcs.get_transform('v2v3', 'world')
radecn = t2sky(v2v3[0], v2v3[1] + 1)
radecn = t2sky(v2v3[0], v2v3[1] + 100)
roll_ref = (
SkyCoord(radec[0] * u.deg, radec[1] * u.deg).position_angle(
SkyCoord(radecn[0] * u.deg, radecn[1] * u.deg)))
Expand Down

0 comments on commit 7c45283

Please sign in to comment.