prop/lib/microwaveprop_web/controllers/page_controller.ex
Graham McIntire 0c295c1558
Add click-to-inspect factor breakdown popup on map
Click anywhere on the propagation map to see a detailed popup with:
- Overall score and tier label with color
- Estimated range for the selected band (CW mode)
- All 9 scoring factors with visual bar charts, individual scores,
  and weight percentages
- Grid point coordinates and data timestamp

Factors are displayed in weight order so users can immediately see
which atmospheric conditions are driving the prediction.
2026-03-31 09:45:50 -05:00

7 lines
154 B
Elixir

defmodule MicrowavepropWeb.PageController do
use MicrowavepropWeb, :controller
def home(conn, _params) do
redirect(conn, to: ~p"/map")
end
end