{@mission.notes}
Scope: {if @mission.only_known_good, do: "Known good locations only (status = good)", else: "All rover locations"} · Owner: {(@mission.user && @mission.user.callsign) || "—"}
| Rover location | Station | Status | Distance | Min clearance | Diffraction | Verdict |
|---|---|---|---|---|---|---|
| {rover_label(path)} | {station_label(path)} | {status_badge(path.status)} | {if path.result, do: format_distance(path.result["distance_km"]), else: "—"} | {if path.result, do: "#{Float.round(path.result["min_clearance_m"] || 0.0, 1)} m", else: "—"} | {if path.result, do: format_db(path.result["diffraction_db"]), else: "—"} | {if path.result, do: verdict_badge(path.result["verdict"]), else: "—"} |