The wetness component of the Tasselled Cap transformation, which relates to soil and canopy moisture. Positive values indicate wet conditions while negative values indicate dry conditions.

Used in water detection.

When to use

  • Permanent and seasonal water body delineation
  • Flood mapping and emergency response
  • Wetland inventory and change detection
  • Reservoir and lake water level monitoring
  • Coastal shoreline change analysis
  • Soil moisture assessment
  • Wetland mapping

Limitations

  • Dark surfaces (shadows, asphalt, dark soils) can produce false positives
  • Suspended sediments and algae alter spectral response in shallow water
  • Mixed pixels at water boundaries reduce edge accuracy
  • Atmospheric correction quality directly impacts threshold selection
  • Sun glint over open water can saturate sensors and bias values
  • Requires sensors with SWIR bands — not available on all platforms

What the values mean

-1 Definitely not water
-0.3 Dry / built-up surface
0 Possible moisture / wet soil
0.3 Open water
0.6 Deep / clear water
Surface typeTypical WET
Built-up, asphalt-0.5 to -0.2
Bare soil, vegetation-0.2 to 0
Wet soil, flooded fields0 to 0.3
Open water, lakes0.3 to 0.7

General Formula

blue 450-520
green 520-600
red 630-690
nir 760-900
swir1 1550-1750
swir2 2080-2350

Sensor-Specific Formulas

Most-used sensors — click to show code below

SensorProviderFormulaBand Mapping
USGS/NASA0.1509 * B1 + 0.1973 * B3 + 0.3279 * B4 + 0.3406 * B5 - 0.7112 * B6 - 0.4572 * B7blue→B1, green→B3, red→B4, nir→B5, swir1→B6, swir2→B7
ESA0.1509 * B1 + 0.1973 * B3 + 0.3279 * B4 + 0.3406 * B8 - 0.7112 * B11 - 0.4572 * B12blue→B1, green→B3, red→B4, nir→B8, swir1→B11, swir2→B12
MAXAR0.1509 * Blue + 0.1973 * Green + 0.3279 * Red + 0.3406 * NIR1 - 0.7112 * SWIR2 - 0.4572 * SWIR6blue→Blue, green→Green, red→Red, nir→NIR1, swir1→SWIR2, swir2→SWIR6

Spectral Band Visualization — Landsat 8/9

Code Examples

Adapted for Landsat 8/9 bands —

wet_tc_landsat-8-9.py

Frequently Asked Questions

What is the WET (Tasselled Cap - wetness) and when should I use it?

The wetness component of the Tasselled Cap transformation, which relates to soil and canopy moisture. Positive values indicate wet conditions while negative values indicate dry conditions. Water indices exploit the strong absorption of shortwave infrared and near-infrared radiation by liquid water. They are critical for delineating water bodies, assessing moisture stress in vegetation, and monitoring hydrological changes over time. WET is particularly suited for soil moisture assessment, wetland mapping, irrigation monitoring. The general formula is 0.1509 * Blue + 0.1973 * Green + 0.3279 * Red + 0.3406 * NIR - 0.7112 * SWIR1 - 0.4572 * SWIR2, which requires blue and green and red and nir and swir1 and swir2 spectral bands.

Which satellite sensors can I use to calculate WET?

WET is supported by 3 satellite sensors in our database, including Landsat 8/9, Sentinel-2, WorldView 3. Each sensor uses different band designations — for example, Landsat 8/9 uses the formula 0.1509 * B1 + 0.1973 * B3 + 0.3279 * B4 + 0.3406 * B5 - 0.7112 * B6 - 0.4572 * B7, while Sentinel-2 uses 0.1509 * B1 + 0.1973 * B3 + 0.3279 * B4 + 0.3406 * B8 - 0.7112 * B11 - 0.4572 * B12. Select a sensor above to see its specific band mapping.

What spectral bands does WET require and why?

WET requires blue (450-520), green (520-600), red (630-690), nir (760-900), swir1 (1550-1750), swir2 (2080-2350). Water absorbs strongly in the near-infrared and shortwave infrared portions of the spectrum, creating a measurable contrast with shorter wavelengths that penetrate the water surface.

How do I calculate WET 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.

Can WET distinguish water from other dark surfaces?

WET is designed to enhance water features, but dark surfaces like shadows, asphalt, and dark soils can produce similar values. For reliable water mapping, consider combining WET with a threshold analysis and, where possible, a secondary index to reduce false positives. Time-series analysis can also help distinguish permanent water bodies from temporary dark surfaces.

WET vs other water indices

IndexNameHow it differs
LSWILand Surface Water IndexAlternative water index — different band combination
LWVI-1Leaf Water Vegetation Index 1Alternative water index — different band combination
LWVI-2Leaf Water Vegetation Index 2Alternative water index — different band combination
MNDWIModified Normalized Difference Water IndexRefined formulation for specific conditions

Related Water Indices

References

Bannari et al. (1995). A review of vegetation indices.
Crist & Cicone (1984). A Physically-Based Transformation of Thematic Mapper Data---The TM Tasseled Cap.

Need help choosing?

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

Ask AI →