4
Coral Bleaching Module

Reading Coral Reef Watch Data

targetLearning Objectives

  • check_circleNavigate the NOAA Coral Reef Watch data portal
  • check_circleInterpret bleaching alert levels and heat stress maps
  • check_circleCompare bleaching risk across different reef regions
satellite_alt

Coral Reef Watch Dashboard

Live Data
Alert Levels:No StressWatchWarningAlert 1Alert 2
map
Global 5km Heat Stress Map
Click on reef regions to see detailed data

Current Regional Status

Great Barrier Reef

StatusWarning
DHW3.2
SST Anomaly+1.1°C

Caribbean

StatusAlert 1
DHW5.8
SST Anomaly+1.4°C

Hawaii

StatusWatch
DHW1.5
SST Anomaly+0.8°C

What Causes Coral Stress?

Temperature is the primary driver of bleaching, but it's not the only factor that stresses corals. A reef at moderate thermal stress might suffer less if other conditions are favorable, while another reef at the same temperature might experience severe bleaching if multiple stressors combine.

Light stress: During heat stress, excessive light amplifies the damage corals experience. Normally, zooxanthellae use light for photosynthesis, but when water temperature is elevated, light-driven photosynthesis can produce reactive oxygen species—chemical byproducts that damage cell structures. This is why bleaching often occurs more severely in shallow, brightly lit reefs than in deeper reefs experiencing the same temperature stress.

Freshwater stress: Heavy rainfall or river runoff can reduce salinity near reefs, stressing corals adapted to stable marine conditions. Freshwater also carries sediment and pollutants that reduce water clarity and light penetration.

Nutrient stress: Moderate nutrient levels are healthy; excessive nutrients from sewage or agricultural runoff can cause algae blooms that shade corals and increase local water temperature. But insufficient nutrients limit coral growth and resilience.

Ocean acidification: Higher atmospheric CO2 dissolves in seawater, increasing acidity and decreasing the concentration of carbonate ions corals need to build their skeletons. While acidification is a slower stress than temperature, it weakens reefs over years and decades.

Biotic stress: Corals are also stressed by pathogens (disease-causing organisms), competition from algae (especially when herbivorous fish are overfished), and predation by crown-of-thorns starfish that can devastate reefs.

Ecologically, we describe this as "multiple stressors." A reef with high temperature stress, high light stress, and freshwater stress is far more likely to experience severe bleaching than a reef with high temperature stress but moderate light and freshwater stress. The combination of factors matters as much as any single factor.

Multi-Factor Risk Models

Predictive models that account for multiple stressors are more accurate than models based on temperature alone. These models use machine learning to discover which combinations of variables predict bleaching risk.

A typical multi-factor model ingests dozens of variables: sea surface temperature, light penetration, salinity, chlorophyll concentration, historical bleaching frequency, reef depth, coral species composition, fish biomass, disease prevalence, and others. The model is trained on historical data: for years when bleaching was observed, what were the values of all these variables? For years without bleaching, what were the values?

The model learns patterns: "High temperature plus high light plus high salinity tends to precede severe bleaching." Or "High temperature in reefs with resilient fish communities bleaches less frequently because diverse herbivorous fish prevent algae overgrowth." These patterns aren't simple rules—they're complex, nonlinear relationships that machine learning excels at discovering.

Once trained, the model can predict bleaching risk for current conditions: given this month's temperature, light, and other variables, what's the probability of bleaching at this reef in the next 8 weeks? The output is a risk score: 0-20% (low risk), 20-50% (moderate risk), 50-80% (high risk), or 80-100% (very high risk).

Multi-factor models typically have higher predictive accuracy than temperature-only models because they capture the reality that reef resilience varies by location and that multiple stressors interact. A reef with healthy fish communities and low nutrient pollution might resist bleaching at higher temperatures than a reef that's overfished and polluted.

AI Predictive Analytics for Reef Health

The newest generation of predictive models uses deep learning to process satellite imagery directly, avoiding the need to manually calculate variables. Instead of calculating temperature, light, and other metrics from satellite data and then feeding those metrics to a model, an end-to-end deep learning model ingests raw satellite imagery from multiple dates and learns what patterns in that imagery predict future bleaching.

This approach has two advantages. First, it extracts more information from the data—a neural network might recognize subtle patterns in imagery that humans wouldn't think to calculate as metrics. Second, it's more automated—you provide satellite imagery and labels ("this location bleached three months later"), and the model learns the predictive patterns without scientists having to hand-design which variables to calculate.

Such models typically ingest several months of imagery and predict whether bleaching will occur 4-12 weeks in the future. Accuracy varies by region and model architecture, but well-trained models achieve 75-85% accuracy at predicting which reefs will experience significant bleaching.

Like all predictive models, these have limitations: - Prediction windows: Reefs can bleach due to unexpected events (sudden heat waves) that aren't visible in historical data - Regional variation: A model trained on Caribbean reefs might not generalize well to the Indo-Pacific - Climate change: As global temperatures rise, reefs experience conditions outside the historical range the model was trained on - Data quality: Predictions are only as good as the training data; reefs in remote regions with sparse monitoring data are harder to predict

Regional vs Global Predictions

Different reef regions have different environmental conditions, histories, and coral communities. A regional model trained specifically on Caribbean reefs typically predicts Caribbean bleaching more accurately than a global model, because regional variation is captured in the training data.

However, regional models require more labeling effort—scientists need years of field survey data from that region to train the model. Global models are more practical initially because they use data from all regions, but they sacrifice accuracy in any specific region.

The real-world approach combines both: scientists use global models for broad screening (identifying which regions likely to experience bleaching) and regional models for detailed predictions in well-monitored areas.

For example, NOAA uses global thermal monitoring (Degree Heating Weeks) as an early warning system applicable to all reefs. In parallel, scientists in Australia maintain a detailed predictive model for the Great Barrier Reef that incorporates region-specific variables and has higher accuracy for that specific system. When the global alert flags elevated risk, the regional model refines the prediction.

Activity: Build a Risk Assessment

You'll build a simplified multi-factor model predicting bleaching risk.

Data: Download a dataset (provided by your teacher) containing records for 50 reef sites with the following variables: - Historical Maximum Monthly Average Temperature (°C) - Current Sea Surface Temperature (°C) - Current Degree Heating Weeks (DHW) - Light Penetration (percent of surface light reaching reef depth) - Chlorophyll Concentration (indicator of nutrient/algae levels) - Fish Biomass (kg/hectare) - Whether significant bleaching occurred within 8 weeks following this data (0 = no, 1 = yes)

Task 1 - Correlations: Calculate the correlation between each environmental variable and whether bleaching occurred. Which single variable is the strongest predictor? Is it temperature-related, as expected?

Task 2 - Build a simple rule: Using the strongest variables, create a decision rule for predicting bleaching. For example: "Predict bleaching if DHW > 4 AND Light Penetration > 40% AND Fish Biomass < 200 kg/hectare." Test this rule on your dataset: how many reefs does it correctly predict as bleaching, and how many healthy reefs does it incorrectly flag?

Task 3 - Improve the model: Adjust your rule to improve accuracy. What threshold values work better? Does combining certain variables improve predictions?

Task 4 - Discuss limitations: Your simple model is less sophisticated than a machine learning model but uses the same logic: combining multiple stressors to predict outcomes. What information would a machine learning model have access to that you don't? How might that improve predictions?

Next: Level 5

You now understand how predictive models combine multiple environmental factors to forecast reef vulnerability. In Level 5, you'll design your own reef research questions, analyze real long-term monitoring datasets, and create a capstone project demonstrating your mastery of coral reef data analysis.