Skip to content

Commit

Permalink
fix units
Browse files Browse the repository at this point in the history
  • Loading branch information
TjarkMiener committed Feb 24, 2025
1 parent d443914 commit 7deb5ad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ctlearn/tools/predict_LST1.py
Original file line number Diff line number Diff line change
Expand Up @@ -653,8 +653,8 @@ def start(self):
)
# Set the camera coordinate offset
cam_coord_offset = SkyCoord(
x=cam_coord_offset_x,
y=cam_coord_offset_y,
x=u.Quantity(cam_coord_offset_x, unit=u.m),
y=u.Quantity(cam_coord_offset_y, unit=u.m),
frame=camera_frame
)
# Transform the true Alt/Az coordinates to camera coordinates
Expand Down

0 comments on commit 7deb5ad

Please sign in to comment.