Skip to content

Commit

Permalink
Remove az range limit for overslew.
Browse files Browse the repository at this point in the history
  • Loading branch information
edennihy committed Oct 11, 2023
1 parent c92f7e4 commit 7f45045
Showing 1 changed file with 8 additions and 9 deletions.
17 changes: 8 additions & 9 deletions python/lsst/ts/observatory/control/base_tcs.py
Original file line number Diff line number Diff line change
Expand Up @@ -642,16 +642,15 @@ async def slew_icrs(
offset_y=offset_y,
)

if overslew_az and 85.0 < alt_az.az < 275.0:
await self.offset_azel(
az=-1.*3600.,
el=0
)
await self.offset_azel(
az=-1.*3600.,
el=0
)

await self.offset_azel(
az=1.*3600.,
el=0
)
await self.offset_azel(
az=1.*3600.,
el=0
)

except salobj.AckError as ack_error:
if "Target out of rotator limit" in ack_error.ackcmd.result:
Expand Down

0 comments on commit 7f45045

Please sign in to comment.