From 7485ac5fffef49f86fb9fc41e1bd35d9d2204efe Mon Sep 17 00:00:00 2001 From: Daniel Garcia Briseno Date: Wed, 11 Feb 2026 14:50:39 -0500 Subject: [PATCH 1/4] Add superset data coverage page --- docroot/statistics/coverage.php | 151 ++++++++++++++++++++++++++++++++ settings/Config.Example.ini | 4 + 2 files changed, 155 insertions(+) create mode 100644 docroot/statistics/coverage.php diff --git a/docroot/statistics/coverage.php b/docroot/statistics/coverage.php new file mode 100644 index 00000000..392ee68a --- /dev/null +++ b/docroot/statistics/coverage.php @@ -0,0 +1,151 @@ + + + + + + Helioviewer.org - Data Coverage Statistics + + + + +
+ + +
Loading dashboard...
+
+
+
+ + + + + diff --git a/settings/Config.Example.ini b/settings/Config.Example.ini index d50a55dc..21d6add5 100644 --- a/settings/Config.Example.ini +++ b/settings/Config.Example.ini @@ -192,3 +192,7 @@ http_export = '' # If running the coordinator locally, then change this to # http://localhost:port coordinator_url = 'http://coordinator' + +[superset] +superset_url = 'http://localhost:8088' +superset_sidecar_url = 'http://localhost:8087' From 0f5ed1f856c4aebf4ef7e6e8b27d46a118f71525 Mon Sep 17 00:00:00 2001 From: Daniel Garcia Briseno Date: Wed, 11 Feb 2026 15:59:49 -0500 Subject: [PATCH 2/4] Link to new coverage page --- docroot/status/index.php | 27 +-------------------------- 1 file changed, 1 insertion(+), 26 deletions(-) diff --git a/docroot/status/index.php b/docroot/status/index.php index f4ffb622..678637b0 100644 --- a/docroot/status/index.php +++ b/docroot/status/index.php @@ -33,26 +33,6 @@ "RHESSI" => $PROVIDERS['RHESSI'] ); - const COVERAGE = array ( - "AIA" => "SDO_coverage.html", - "HMI" => "SDO_coverage.html", - "EIT" => "SOHO_coverage.html", - "LASCO" => "SOHO_coverage.html", - "COSMO" => "MLSO_coverage.html", - "EUI" => "SOLO_coverage.html", - "COR1-A" => "STEREO_A_coverage.html", - "COR2-A" => "STEREO_A_coverage.html", - "EUVI-A" => "STEREO_A_coverage.html", - "COR1-B" => "STEREO_B_coverage.html", - "COR2-B" => "STEREO_B_coverage.html", - "EUVI-B" => "STEREO_B_coverage.html", - "IRIS" => "IRIS_coverage.html", - "SWAP" => "PROBA2_coverage.html", - "SXT" => "Yohkoh_coverage.html", - "XRT" => "Hinode_coverage.html", - "RHESSI" => "RHESSI_coverage.html" - ); - const TABLE_ROW_TEMPLATE = "%s%s%s%s%s%s"; function formatDate(?DateTime $date) { @@ -102,12 +82,7 @@ function genRobLink($name, $url) { } function genCoverageLink($source) { - $instrument = explode(" ", $source)[0]; - if (array_key_exists($instrument, COVERAGE)) { - $coverage_page = "/statistics/bokeh/coverages/" . COVERAGE[$instrument]; - } else { - $coverage_page = "#"; - } + $coverage_page = "/statistics/coverage.php"; return "$source"; } From 182787b6607afb6712d2386fd2a5ec3ad2d24c8a Mon Sep 17 00:00:00 2001 From: Daniel Garcia Briseno Date: Wed, 11 Feb 2026 16:01:16 -0500 Subject: [PATCH 3/4] Remove old coverages --- docroot/statistics/bokeh/coverages/index.html | 26 ------------------- 1 file changed, 26 deletions(-) delete mode 100644 docroot/statistics/bokeh/coverages/index.html diff --git a/docroot/statistics/bokeh/coverages/index.html b/docroot/statistics/bokeh/coverages/index.html deleted file mode 100644 index 11fa66bc..00000000 --- a/docroot/statistics/bokeh/coverages/index.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - Coverage Plots - - - - -

Coverage plots

-

SDO Coverage

-

IRIS Coverage

-

Hinode Coverage

-

STEREO_B Coverage

-

MLSO Coverage

-

SOHO Coverage

-

TRACE Coverage

-

PROBA2 Coverage

-

STEREO_A Coverage

-

Yohkoh Coverage

-

GOES-R SUVI Coverage

-

GONG H-alpha Coverage

-

Solar Orbiter (SOLO) Coverage

-
-
- - From 8fa2dea52a4514920f24e5bbf733e7339a14a23d Mon Sep 17 00:00:00 2001 From: Daniel Garcia Briseno Date: Thu, 12 Feb 2026 10:39:27 -0500 Subject: [PATCH 4/4] Put dashboard ID in configuration --- docroot/statistics/coverage.php | 2 +- settings/Config.Example.ini | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/docroot/statistics/coverage.php b/docroot/statistics/coverage.php index 392ee68a..003af193 100644 --- a/docroot/statistics/coverage.php +++ b/docroot/statistics/coverage.php @@ -83,7 +83,7 @@