The Burn Area Index (BAI) was developed by Chuvieco et al. (2002) to identify burned areas using the red and NIR spectral bands. BAI emphasizes the charcoal signal in post-fire images by considering the spectral distance from each pixel to a reference spectral point where recently burned areas tend to converge.

Used in fire & burn mapping.

When to use

  • Post-fire burn perimeter mapping
  • Burn severity classification (low, moderate, high)
  • Vegetation recovery monitoring over years
  • Carbon emission estimation from biomass loss
  • Soil erosion risk assessment in burned watersheds
  • burned area detection
  • fire severity assessment

Limitations

  • Requires both pre-fire and post-fire imagery for accurate severity mapping
  • Vegetation regrowth begins quickly, narrowing the post-fire assessment window
  • Surface moisture from rain after the fire can mask burn signatures
  • Topographic shadows produce false low-severity areas
  • Ground validation needed for fire severity classification accuracy

What the values mean

-1 Unburned / regrowth
-0.1 Low severity
0.1 Moderate-low severity
0.27 Moderate-high severity
0.44 High severity
0.66 Severe (full burn)
Surface typeTypical BAI
Unburned vegetation< -0.1
Low severity burn-0.1 to 0.1
Moderate burn0.1 to 0.44
High severity, full burn> 0.44

General Formula

RED 640-760
NIR 780-1400

Sensor-Specific Formulas

Most-used sensors — click to show code below

SensorProviderFormulaBand Mapping
21AT1 / ((0.1 - Red)^2 + (0.06 - NIR)^2)RED→Red, NIR→NIR
CG Satellite1 / ((0.1 - Red)^2 + (0.06 - NIR)^2)RED→Red, NIR→NIR
USGS/NASA1 / ((0.1 - B4)^2 + (0.06 - B5)^2)RED→B4, NIR→B5
USDA1 / ((0.1 - Red)^2 + (0.06 - NIR)^2)RED→Red, NIR→NIR
ESA1 / ((0.1 - B4)^2 + (0.06 - B8)^2)RED→B4, NIR→B8
MAXAR1 / ((0.1 - Red)^2 + (0.06 - NIR1)^2)RED→Red, NIR→NIR1
MAXAR1 / ((0.1 - Red)^2 + (0.06 - NIR1)^2)RED→Red, NIR→NIR1

Spectral Band Visualization — BJ3A

Code Examples

Adapted for BJ3A bands —

bai_bj3a.py

Frequently Asked Questions

What is the BAI (Burn Area Index) and when should I use it?

The Burn Area Index (BAI) was developed by Chuvieco et al. (2002) to identify burned areas using the red and NIR spectral bands. BAI emphasizes the charcoal signal in post-fire images by considering the spectral distance from each pixel to a reference spectral point where recently burned areas tend to converge. Burn severity indices quantify post-fire damage by measuring the spectral changes that occur when vegetation is consumed and the underlying soil and char are exposed. BAI is particularly suited for burned area detection, fire severity assessment, post-fire monitoring. The general formula is 1 / ((0.1 - RED)^2 + (0.06 - NIR)^2), which requires RED and NIR spectral bands.

Which satellite sensors can I use to calculate BAI?

BAI is supported by 23 satellite sensors in our database, including BJ3A, BJ3N, Dragonette-1, Dragonette-2/3, Gaofen-1 and 18 more. Each sensor uses different band designations — for example, BJ3A uses the formula 1 / ((0.1 - Red)^2 + (0.06 - NIR)^2), while BJ3N uses 1 / ((0.1 - Red)^2 + (0.06 - NIR)^2). Select a sensor above to see its specific band mapping.

What spectral bands does BAI require and why?

BAI requires RED (640-760), NIR (780-1400). These wavelength regions target the specific spectral features that this index is designed to measure.

How do I calculate BAI in Python or R?

Both Python and R code samples are provided above. In Python, use rasterio to load individual band GeoTIFF files and numpy for the arithmetic. In R, the terra package handles raster operations efficiently. The key is to load bands as floating-point arrays to avoid integer division, and to handle division-by-zero cases where the denominator equals zero. For production use, consider applying a valid data mask to exclude no-data pixels before calculation.

BAI vs other burn indices

IndexNameHow it differs
VI6TVI6T IndexAlternative burn index — different band combination

Related Burn Indices

References

Chuvieco, E., Martin, M.P., and Palacios, A. (2002) - Assessment of Different Spectral Indices in the Red-Near-Infrared Spectral Domain for Burned Land Discrimination. Remote Sensing of Environment, 112, 2381-2396
Martín, M.P. (1998) - Cartografía e inventario de incendios forestales en la Península Ibérica a partir de imágenes NOAA-AVHRR

Need help choosing?

Ask our AI assistant for sensor recommendations, code examples, or how BAI compares to other indices for your specific use case.

Ask AI →