Skip to content

Commit

Permalink
Round up motax measured offsets
Browse files Browse the repository at this point in the history
  • Loading branch information
albireox committed Jul 18, 2023
1 parent aaf4740 commit 7bd42d0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lvmguider/guider.py
Original file line number Diff line number Diff line change
Expand Up @@ -298,8 +298,8 @@ async def guide_one(
"frameno": frameno,
"ra": ra_p,
"dec": dec_p,
"radec_offset": list(offset_radec),
"motax_offset": list(offset_motax),
"radec_offset": list(numpy.round(offset_radec, 3)),
"motax_offset": list(numpy.round(offset_motax, 3)),
"separation": sep,
"mode": "guide" if self.use_reference_frames else "acquisition",
}
Expand Down

0 comments on commit 7bd42d0

Please sign in to comment.