diff --git a/lib/microwaveprop_web/live/about_live.ex b/lib/microwaveprop_web/live/about_live.ex index 56d460ee..50969a27 100644 --- a/lib/microwaveprop_web/live/about_live.ex +++ b/lib/microwaveprop_web/live/about_live.ex @@ -134,10 +134,6 @@ defmodule MicrowavepropWeb.AboutLive do
Terrain profiles
{format_count(@stats.terrain_profiles)}
-
-
Propagation scores
-
{format_count(@stats.propagation_scores)}
-
Beacons
{format_count(@stats.beacons)}
@@ -233,7 +229,7 @@ defmodule MicrowavepropWeb.AboutLive do # every About page load is wasteful. We use PostgreSQL's pg_class.reltuples # estimate — it's maintained by ANALYZE and is accurate to within a few # percent, which is plenty for "big number on a marketing page." - @estimate_tables ~w(hrrr_profiles propagation_scores surface_observations) + @estimate_tables ~w(hrrr_profiles surface_observations) defp fetch_stats do %{ @@ -244,7 +240,6 @@ defmodule MicrowavepropWeb.AboutLive do hrrr_profiles: count_estimate("hrrr_profiles"), iemre_observations: count_exact("iemre_observations"), terrain_profiles: count_exact("terrain_profiles"), - propagation_scores: count_estimate("propagation_scores"), beacons: count_exact("beacons"), commercial_samples: count_exact("commercial_samples") }