What the panel shows
A card list of thermal clusters with:- Status label per cluster:
normal,elevated,spike, orpersistent. - Baseline comparison — how the current detection density differs from the cluster’s baseline.
- Persistence tracking — clusters that re-appear across successive windows are flagged
persistent. - Conflict-adjacent flag — clusters near active conflict events.
- High-relevance flag — clusters near critical infrastructure or other strategic context.
- Click a cluster card to jump the map to that cluster’s coordinates.
thermal-escalation; canonical component is src/components/ThermalEscalationPanel.ts.
How you reach it
- Cmd+K: type thermal or escalation.
- Availability by variant: registered and enabled by default in the full/geopolitical variant only. Not present in the tech, finance, commodity, or happy variants. Source:
FULL_PANELSinsrc/config/panels.ts.
Data sources
Per the in-panel info tooltip, Thermal Escalation is seeded from:- FIRMS / VIIRS — NASA’s Fire Information for Resource Management System and the Visible Infrared Imaging Radiometer Suite thermal anomaly feeds.
GET /api/thermal/v1/list-thermal-escalations. The backend seeder clusters raw detections, compares against the baseline, applies persistence and adjacency logic, and writes the result at thermal:escalation:v1 in Redis.
Refresh cadence
The seeder runs on a ~2-hour cron. The key is allowed up to 6 hours (maxStaleMin: 360) in api/health.js — 3× the nominal interval — before the health surface escalates. The longer grace window accommodates FIRMS refresh cycles and the clustering step’s runtime.
Tier & gating
Thermal Escalation is free. Nopremium flag in src/config/panels.ts; the RPC is public.
API reference
- Thermal service —
list-thermal-escalations. - Related: Natural Disasters / Wildfires for the raw-detection map layer that feeds this clustering.
