{# Clock-corrections intro prose + per-instrument offset/drift table. The `clock_table` panel payload (kind="html"). The clock-alignment-check figure is a separate figure panel. #}

Positive drift/offset = instrument was slow (behind UTC); correction shifts times later. Negative = instrument was fast (ahead of UTC); correction shifts times earlier.

{% for instr in instruments %} {% endfor %}
# Type S/N Hab (m) Offset (s) Computer time at recovery Instrument time at recovery Drift (s) Source
{{ loop.index }} {{ instr.instr_type }} {{ instr.serial }} {{ "%.1f"|format(instr.hab) }} {% if instr.clock.offset_s == 0 %} {% elif instr.clock.offset_s > 0 %} +{{ "%.1f"|format(instr.clock.offset_s) }} {% else %} {{ "%.1f"|format(instr.clock.offset_s) }} {% endif %} {% if instr.clock.computer_time %}{{ instr.clock.computer_time }}{% else %}{% endif %} {% if instr.clock.instrument_time %}{{ instr.clock.instrument_time }}{% else %}{% endif %} {% if instr.clock.drift_s is none or instr.clock.drift_s == 0 %} {% elif instr.clock.drift_s > 0 %} +{{ "%.1f"|format(instr.clock.drift_s) }} {% else %} {{ "%.1f"|format(instr.clock.drift_s) }} {% endif %} {% if instr.clock.method == "none" %} none {% else %} {{ instr.clock.method }} {% endif %}