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.
7 lines
154 B
Elixir
7 lines
154 B
Elixir
defmodule MicrowavepropWeb.PageController do
|
|
use MicrowavepropWeb, :controller
|
|
|
|
def home(conn, _params) do
|
|
redirect(conn, to: ~p"/map")
|
|
end
|
|
end
|