Wildfires

Last modified: 7/27/2026

Wildfires

Global near-real-time thermal anomaly detections from NASA's Fire Information for Resource Management System (FIRMS), using the VIIRS Suomi-NPP satellite product. Each point is a single satellite detection, not a confirmed fire boundary — heat sources other than wildfire (agricultural burning, industrial flares, volcanic activity) can also trigger a detection.

Global Hotspot Map

High-confidence detections only, sized by fire radiative power (FRP) — larger markers mean a more intense signal. Ingested via the platform feeds addon and rendered from the record store at view time (no page churn).

If nothing renders above, the firms-viirs feed source is not yet configured (see Configuration).

Reading the map

Data Source

Source Provider Coverage
-------- ---------- ---------
Thermal hotspots NASA FIRMS — VIIRS Suomi-NPP (NRT) Global, rolling 24-hour window

Configuration

The live feed is served by the ngdpbase feeds addon (#685). Enable it and declare the source in the instance app-custom-config.json, then restart:

{
  "ngdpbase.addons.feeds.enabled": true,
  "ngdpbase.addons.feeds.sources": {
    "firms-viirs": {
      "adapter": "csv",
      "url": "https://firms.modaps.eosdis.nasa.gov/api/area/csv/<MAP_KEY>/VIIRS_SNPP_NRT/world/1",
      "type": "Event",
      "intervalMinutes": 60,
      "map": {
        "latitude": "latitude",
        "longitude": "longitude",
        "frp": "frp",
        "confidence": "confidence",
        "acq_date": "acq_date",
        "acq_time": "acq_time"
      }
    }
  }
}

Requires a free NASA FIRMS API key — never commit the key itself to a repository; it belongs only in the instance's own app-custom-config.json on the data volume.


Status: page and feed wiring live. For live data outside this instance visit NASA FIRMS.