This commit is contained in:
Felix Delattre 2026-05-04 09:53:12 +02:00
parent 33746b35f9
commit 77e1488830
4 changed files with 343 additions and 87 deletions

View file

@ -14,18 +14,36 @@
.selectors select { padding: 5px 10px; font-size: 14px; margin-right: 15px; }
h1 { font-size: 22px; }
h2 { font-size: 16px; margin-top: 24px; color: #333; }
h2:first-of-type { margin-top: 8px; }
h3 { font-size: 14px; margin: 14px 0 6px 0; color: #444; font-weight: 600; }
table { border-collapse: collapse; width: 100%; font-size: 13px; margin-bottom: 12px; }
th, td { border: 1px solid #ccc; padding: 6px 8px; text-align: left; }
th { background: #f5f5f5; }
td.num { text-align: right; font-variant-numeric: tabular-nums; }
.fusion-block table { margin-bottom: 4px; }
.fusion-block table + table { margin-top: 12px; }
.section-note { font-size: 12px; color: #555; margin: -6px 0 8px 0; max-width: 720px; line-height: 1.45; }
.section-note code { background: #f1f1f1; padding: 1px 4px; border-radius: 3px; font-size: 11px; }
.intro { font-size: 13px; color: #333; background: #fafafa; border: 1px solid #e5e5e5;
padding: 10px 12px; border-radius: 4px; margin-bottom: 18px; line-height: 1.5; }
.intro ul { margin: 6px 0 0 18px; padding: 0; }
.intro li { margin-bottom: 2px; }
.intro-short { margin-bottom: 0; }
details.definitions { margin-top: 28px; font-size: 13px; border: 1px solid #e5e5e5; border-radius: 4px; padding: 8px 12px; background: #fafafa; }
details.definitions summary { cursor: pointer; font-weight: 600; color: #333; }
details.definitions ul { margin: 8px 0 0 18px; padding: 0; }
details.definitions li { margin-bottom: 4px; }
.scenario-key { font-size: 11px; color: #666; font-weight: normal; }
.empty { color: #666; font-style: italic; }
.err { color: #a00; }
details.how-read {
font-size: 12px; color: #333; line-height: 1.5; max-width: 820px; margin: 0 0 18px 0;
padding: 8px 12px 10px; border: 1px solid #ccd; border-radius: 4px; background: #f8fafc;
}
details.how-read summary {
cursor: pointer; font-weight: 600; font-size: 13px; color: #111; margin-bottom: 0;
}
details.how-read ol { margin: 10px 0 0; padding-left: 1.35rem; }
details.how-read li { margin-bottom: 7px; }
details.how-read li:last-child { margin-bottom: 0; }
</style>
</head>
<body>
@ -56,6 +74,14 @@
nrmse: "nRMSE",
nse_pc: "NSE_PC",
};
const FUSION_BTI_ROWS = [
["aggressive_sigma20", "Aggressive", 20],
["aggressive_sigma30", "Aggressive", 30],
["nonaggressive_sigma20", "Non-aggressive", 20],
["nonaggressive_sigma30", "Non-aggressive", 30],
];
function mv(m, c) {
return c === "nse_pc" ? (m.nse_pc ?? m.nse) : m[c];
}
@ -81,21 +107,64 @@
return Number.isInteger(v) ? String(v) : v.toFixed(4);
}
function tableSection(title, obj) {
const heading = title ? `<h2>${title}</h2>` : "";
if (!obj || typeof obj !== "object" || !Object.keys(obj).length) {
return `${heading}<p class="empty">No data</p>`;
}
const keys = Object.keys(obj).sort();
let head = `<tr><th>Scenario</th>${DISPLAY_METRIC_COLS.map((c) => `<th>${DISPLAY_METRIC_LABELS[c]}</th>`).join("")}</tr>`;
const rows = keys.map((k) => {
const m = obj[k] || {};
return `<tr><td>${k}</td>${DISPLAY_METRIC_COLS.map((c) => `<td class="num">${fmtMetric(c, mv(m, c))}</td>`).join("")}</tr>`;
}).join("");
return `${heading}<table>${head}${rows}</table>`;
function fusionMeanResidual(m) {
const x = m?.residual_vs_phenocam?.mean;
const n = Number(x);
return Number.isFinite(n) ? n : null;
}
function baselineSection(b) {
function fusionSubTableRows(temporal, keysWithLabels, includeMeanResid) {
const parts = [];
for (const [key, stratLabel, sig] of keysWithLabels) {
const m = temporal[key];
if (!m) continue;
const mr = fusionMeanResidual(m);
const meanCell = includeMeanResid
? `<td class="num">${mr !== null ? mr.toFixed(3) : "—"}</td>`
: "";
parts.push(
`<tr><td>${stratLabel}, σ=${sig} <span class="scenario-key">(${key})</span></td>${DISPLAY_METRIC_COLS.map((c) => `<td class="num">${fmtMetric(c, mv(m, c))}</td>`).join("")}${meanCell}</tr>`
);
}
return parts;
}
function fusionTables(temporal) {
if (!temporal || typeof temporal !== "object") {
return `<p class="empty">No fusion temporal data</p>`;
}
const itbRows = FUSION_BTI_ROWS.map(([k, s, sig]) => [`${k}_itb`, s, sig]);
const allKeys = [...FUSION_BTI_ROWS.map((r) => r[0]), ...itbRows.map((r) => r[0])];
let showMean = false;
for (const k of allKeys) {
if (fusionMeanResidual(temporal[k]) !== null) {
showMean = true;
break;
}
}
const btiBody = fusionSubTableRows(temporal, FUSION_BTI_ROWS, showMean);
const itbBody = fusionSubTableRows(temporal, itbRows, showMean);
if (!btiBody.length && !itbBody.length) {
return `<p class="empty">No fusion scenarios in temporal</p>`;
}
const meanTh = showMean ? `<th class="num">Mean resid.</th>` : "";
const head = `<tr><th>Setting</th>${DISPLAY_METRIC_COLS.map((c) => `<th class="num">${DISPLAY_METRIC_LABELS[c]}</th>`).join("")}${meanTh}</tr>`;
let h = `<div class="fusion-block">`;
if (btiBody.length) {
h += `<h3>Bands-then-Index (BtI)</h3>`;
h += `<table>${head}${btiBody.join("")}</table>`;
}
if (itbBody.length) {
h += `<h3>Index-then-Bands (ItB)</h3>`;
h += `<table>${head}${itbBody.join("")}</table>`;
}
h += `</div>`;
return h;
}
/** Returns only &lt;table&gt;&lt;/table&gt; or empty string (no heading). */
function baselineTable(b) {
if (!b || typeof b !== "object") return "";
const rows = [];
const pushRow = (label, m) => {
@ -111,8 +180,74 @@
pushRow(`S2 Whittaker λ=400 (${strat})`, b.s2_whittaker_lambda400?.[strat]);
}
if (!rows.length) return "";
const head = `<tr><th>Baseline</th>${DISPLAY_METRIC_COLS.map((c) => `<th>${DISPLAY_METRIC_LABELS[c]}</th>`).join("")}</tr>`;
return `<h2>Baselines (temporal vs PhenoCam)</h2><table>${head}${rows.join("")}</table>`;
const head = `<tr><th>Baseline</th>${DISPLAY_METRIC_COLS.map((c) => `<th class="num">${DISPLAY_METRIC_LABELS[c]}</th>`).join("")}</tr>`;
return `<table>${head}${rows.join("")}</table>`;
}
function fmtFixed3(v) {
const n = Number(v);
return Number.isFinite(n) ? n.toFixed(3) : "—";
}
function derivedSection(d) {
if (!d) return "";
const dn = d.delta_nse_pc_sigma20_minus_sigma30;
const paired = d.bti_vs_itb_mean_residual || [];
if (!dn && !paired.length) return "";
let h = `<h2>Summaries</h2>`;
h += `<p class="section-note">Same numbers as Fusion, condensed. First table: which σ fits PhenoCam better (NSE_PC only). Second: mean bias BtI vs ItB.</p>`;
if (dn) {
h += `<p class="section-note"><b>ΔNSE_PC</b> = NSE_PC(σ20) NSE_PC(σ30). <b>+</b>σ20 better. <b></b>σ30 better.</p>`;
h += `<table><tr><th>Mode</th><th>Strategy</th><th class="num">ΔNSE_PC</th></tr>`;
let anyDelta = false;
for (const mode of ["bti", "itb"]) {
for (const strat of ["aggressive", "nonaggressive"]) {
const v = dn[mode]?.[strat];
if (Number.isFinite(Number(v))) anyDelta = true;
h += `<tr><td>${mode.toUpperCase()}</td><td>${strat}</td><td class="num">${fmtFixed3(v)}</td></tr>`;
}
}
h += `</table>`;
if (!anyDelta) {
h += `<p class="section-note">ΔNSE_PC needs both σ20 and σ30 fusion rows in <code>temporal</code> (BtI and ItB). Re-run <code>metrics_stats</code>.</p>`;
}
}
if (paired.length) {
h += `<p class="section-note">Mean(fused PhenoCam) per row. <b>+</b> / <b></b> = average over / under PhenoCam. Closer to <b>0</b> in a column = less bias for that workflow.</p>`;
h += `<table><tr><th>Strategy</th><th>σ</th><th class="num">Mean residual BtI</th><th class="num">Mean residual ItB</th></tr>`;
for (const row of paired) {
h += `<tr><td>${row.strategy}</td><td>${row.sigma}</td><td class="num">${fmtFixed3(row.mean_residual_bti)}</td><td class="num">${fmtFixed3(row.mean_residual_itb)}</td></tr>`;
}
h += `</table>`;
}
return h;
}
function howToReadBlock() {
return `<details class="how-read">
<summary>How to read</summary>
<ol>
<li>All scores are satellite or fusion <b>GCC</b> vs <b>PhenoCam GCC</b> at the site 3×3 window, <b>same calendar days</b> only. Extra stats: <code>metrics.json</code>.</li>
<li><b></b>, <b>NSE_PC</b>: higher = better. <b>nRMSE</b>: lower = better.</li>
<li><b>Fusion:</b> same row number in BtI and in ItB = same screening + same σ — compare left/right. Down one block = change screening or σ.</li>
<li><b>Mean resid.</b> (if present): mean(fused PhenoCam). Sign = average bias; use R² / nRMSE / NSE_PC for overall fit.</li>
<li><b>Summaries:</b> ΔNSE_PC = NSE at σ20 minus NSE at σ30 (+ means σ20 wins). Paired table: closer to 0 = less mean bias.</li>
</ol>
</details>`;
}
function definitionsDetails() {
return `<details class="definitions">
<summary>Definitions</summary>
<ul>
<li><b>BtI</b>: fuse reflectance bands, then GCC.</li>
<li><b>ItB</b>: GCC on S2 and S3, then fuse GCC.</li>
<li><b>Scenario</b>: screening (<code>aggressive</code> / <code>nonaggressive</code>) × σ (20 / 30 days).</li>
<li><a href="phenology.html">Phenology</a> — PhenoCam SOS/EOS (TIMESAT).</li>
<li><code>metrics.json</code> — also Pearson <i>r</i>, RMSE, MAE, <code>n_samples</code>.</li>
</ul>
</details>`;
}
function render(data) {
@ -122,35 +257,35 @@
return;
}
let html = "";
html += `
<div class="intro">
All metrics compare a greenness index (GCC) from satellite products against PhenoCam
ground-truth GCC at the site's 3×3 pixel window.
<ul>
<li><b>BtI</b> (<i>Bands-then-Index</i>): fuse S2/S3 reflectance, then compute GCC from the fused bands.</li>
<li><b>ItB</b> (<i>Index-then-Bands</i>): compute GCC from S2 and S3 first, then fuse the GCC rasters.</li>
<li>Scenarios combine a cloud-screening <b>strategy</b> (<code>aggressive</code> / <code>nonaggressive</code>)
and an EFAST fusion <b>σ</b> (<code>sigma20</code> / <code>sigma30</code>).</li>
<li>Tables list <b></b> (fit vs PhenoCam), <b>nRMSE</b> (RMSE normalised by PhenoCam variability),
and <b>NSE_PC</b> (NashSutcliffe using PhenoCam as reference). Pearson <i>r</i>, RMSE, MAE, and sample counts stay in <code>metrics.json</code>.</li>
</ul>
</div>`;
html += `<div class="intro intro-short">
GCC at the 3×3 site window vs PhenoCam. Sections: PhenoCam → baselines → fusion (BtI, then ItB) → summaries.
<code>data/${siteName}/${season}/metrics.json</code>
</div>`;
html += howToReadBlock();
if (data.phenocam_stats) {
html += `<h2>PhenoCam</h2>`;
html += `<p class="section-note">Summary statistics of the PhenoCam GCC timeseries used as ground truth for this site and season.</p>`;
html += `<h2>PhenoCam (ground truth)</h2>`;
html += `<p class="section-note">Camera ROI GCC (not compared to itself). Dates / SOSEOS: <a href="phenology.html">Phenology</a>.</p>`;
html += `<table><tr><th>mean</th><th>std</th><th>min</th><th>max</th><th>n</th></tr><tr>`;
const p = data.phenocam_stats;
html += `<td class="num">${fmt(p.mean)}</td><td class="num">${fmt(p.std)}</td><td class="num">${fmt(p.min)}</td><td class="num">${fmt(p.max)}</td><td class="num">${fmt(p.n_samples)}</td></tr></table>`;
}
const baselineHtml = baselineSection(data.baseline);
if (baselineHtml) {
html += `<h2>Baselines (temporal vs PhenoCam)</h2>`;
html += `<p class="section-note">Reference GCC series <i>before</i> any fusion: raw S2 (all dates and cloud-screened per strategy), S3 composite per strategy, and a Whittaker-smoothed S2 series (λ=400). Useful to see what fusion has to beat.</p>`;
html += baselineHtml.replace(/^<h2>[^<]*<\/h2>/, "");
const baselineTbl = baselineTable(data.baseline);
if (baselineTbl) {
html += `<h2>Baselines (vs PhenoCam)</h2>`;
html += `<p class="section-note">Same columns as fusion (vs PhenoCam). Higher R² / NSE_PC, lower nRMSE = better. S3 = coarse-only; Whittaker = smoothed S2-only.</p>`;
html += baselineTbl;
}
html += `<h2>Temporal (vs PhenoCam)</h2>`;
html += `<p class="section-note">Per-scenario agreement between the fusion GCC <b>timeseries</b> at the site 3×3 window and the PhenoCam GCC timeseries, across all matched dates. Scenarios ending in <code>_itb</code> are Index-then-Bands; the others are Bands-then-Index.</p>`;
html += tableSection("", data.temporal);
html += `<h2>Fusion (vs PhenoCam)</h2>`;
html += `<p class="section-note">BtI block vs ItB block: same row = same screening + σ. Within a block: four EFAST combinations.</p>`;
html += fusionTables(data.temporal || {});
html += derivedSection(data.derived);
html += definitionsDetails();
el.innerHTML = html || `<p class="empty">Empty metrics file</p>`;
}