Practical Geospatial Solutions
Guides › Satellite analysis

Wildfire Burn Severity Mapping with Landsat — How dNBR Works

Practical Geospatial Solutions · 2026-08-10

When a wildfire happens, the standard way to quickly and objectively answer "how much burned, and how badly" is satellite-based dNBR analysis. Without deploying a helicopter or walking the entire perimeter, two satellite images — one from before the fire, one from after — are enough to grade the burned area by severity. This guide explains the underlying principle and how to run it yourself in the browser, with no API key.

NBR: putting a number on burned ground

The core idea is simple. Healthy vegetation strongly reflects near-infrared (NIR) light and reflects relatively little shortwave infrared (SWIR). Burned, charred ground does the opposite — NIR reflectance drops sharply while SWIR reflectance increases. Turning that contrast into a single index gives you NBR (Normalized Burn Ratio).

NBR = (NIR − SWIR) / (NIR + SWIR)

Landsat uses Band 5 (NIR) and Band 7 (SWIR2). Higher NBR values indicate healthy vegetation; low or negative values suggest the ground has burned.

dNBR: the difference between before and after

A single NBR snapshot can't tell you whether an area is "naturally like this" or "burned and became like this." So you subtract the post-fire NBR from the pre-fire NBR. That difference is dNBR (differenced NBR).

dNBR = NBR(before) − NBR(after)

The larger the change (the higher the dNBR), the more severe the damage at that location. This approach filters out seasonal variation and areas that were already bare ground, isolating only what was newly burned by this specific fire.

Burn severity classes (USGS)

Splitting dNBR values using the classification scale compiled by the US Geological Survey (USGS) turns the raw number into a severity class. The scale is conventionally expressed as the value × 1000.

dNBR (×1000)Class
< −100High post-fire regrowth
−100 to 99Unburned / unchanged
100 to 269Low severity
270 to 439Moderate-low severity
440 to 659Moderate-high severity
≥ 660High severity (near-total loss)

Image selection makes or breaks the result

In practice, what determines result quality isn't the formula — it's which images you choose. A few principles:

Why can you just enter a fire date? GISDirect automatically searches the Landsat catalog (Microsoft's Planetary Computer) for the periods before and after the date you enter, and picks the least cloudy scenes to compute dNBR from. It's a public catalog, so no separate API key is needed.

Running it in the browser

  1. Define the area you want to analyze on the map.
  2. Enter the wildfire date (or the month it occurred).
  3. Before/after satellite imagery is selected automatically and dNBR is computed.
  4. Damage is shown color-coded by severity class, with area (in hectares) tallied per class. Results can be exported as GeoJSON or Shapefile.
Try it → The wildfire burn severity tool produces a graded dNBR result as soon as you enter a fire date. For general forest disturbance or unauthorized land clearing (not tied to a specific fire event), the disturbance detection tool uses an NDVI-change approach instead.

Limitations and caveats

Satellite dNBR is optimized for broad-area screening. It won't tell you whether an individual tree survived, or reveal damage below the surface. And during periods of heavy cloud or haze, there may simply be no usable imagery at all. Treat the results as a first-pass tool for prioritizing field verification and detailed assessment — final damage figures should still be confirmed on the ground.