Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion observation/calibrate_delays.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ class NoTargetsUpError(Exception):
if len(session.ants) < 4:
raise ValueError('Not enough receptors to do calibration - you '
'need 4 and you have %d' % (len(session.ants),))
sources_above_horizon = observation_sources.filter(el_limit_deg=opts.horizon)
sources_above_horizon = observation_sources.filter(el_limit_deg=opts.horizon+5)
Copy link
Copy Markdown
Contributor

@ludwigschwardt ludwigschwardt Feb 20, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I would add some documentation here, e.g.

Suggested change
sources_above_horizon = observation_sources.filter(el_limit_deg=opts.horizon+5)
# Lift horizon to avoid source setting while waiting for gains or during verification
sources_above_horizon = observation_sources.filter(el_limit_deg=opts.horizon+5)

That 5º buys you 20 minutes or so extra.

if not sources_above_horizon:
raise NoTargetsUpError("No targets are currently visible - "
"please re-run the script later")
Expand Down