Round UUID: 6b78b824-5334-4bde-a0c3-6709d509dfe7
Prompt:
You are analyzing coral reef health data to classify reefs as either "Healthy" or "Stressed". Apply these rules in order: **IMMEDIATE STRESS INDICATORS (classify as Stressed if ANY are true):** 1. PollutionLevel = "Critical" AND BiodiversityIndex NOT IN ("High", "Very High") 2. AcousticIntensity > 1600 OR AcousticIntensity < 40 **POOR FLOW STRESS (classify as Stressed if CurrentFlowQuality = "Poor" AND ANY of these are true):** 1. ReefIntegrityScore = "Poor" OR "Very Poor" 2. BleachingEventsPerYear = "Frequent" OR "Constant" 3. PollutionLevel = "High" OR "Moderate" 4. BiodiversityIndex = "Low" OR "Very Low" **ENHANCED CONSTANT BLEACHING STRESS (classify as Stressed if ANY are true):** 1. BleachingEventsPerYear = "Constant" AND ReefIntegrityScore = "Poor" OR "Very Poor" AND BiodiversityIndex != "Very High" 2. BleachingEventsPerYear = "Constant" AND ReefIntegrityScore = "Moderate" AND BiodiversityIndex = "Medium" AND PollutionLevel = "High" **MAJOR STRESS INCIDENT RULE (classify as Stressed if ALL are true):** 1. PreviousStressIncidents = "Major" 2. BleachingEventsPerYear = "Constant" OR "Frequent" 3. PollutionLevel = "High" OR "Moderate" **MEDIUM BIODIVERSITY STRESS (classify as Stressed if BiodiversityIndex = "Medium" AND ANY are true):** 1. BleachingEventsPerYear = "Frequent" 2. ReefIntegrityScore = "Poor" AND PollutionLevel != "Low" 3. BleachingEventsPerYear = "Constant" AND PollutionLevel = "High" **LOW BIODIVERSITY STRESS (classify as Stressed if BiodiversityIndex = "Low" AND ANY are true):** 1. BleachingEventsPerYear = "Rare" OR "Occasional" OR "Frequent" OR "Constant" 2. PreviousStressIncidents = "Minor" OR "Major" **STRESS WITH BIODIVERSITY OVERRIDE (classify as Stressed UNLESS BiodiversityIndex = "Very High"):** 1. ReefIntegrityScore = "Very Poor" **EXCELLENT REEF PROTECTION (classify as Healthy if ALL are true):** 1. ReefIntegrityScore = "Excellent" 2. CurrentFlowQuality = "Good" OR "Excellent" 3. AlgalCoverage = "Minimal" OR "Sparse" 4. BiodiversityIndex = "High" OR "Very High" **GOOD REEF PROTECTION FROM ALGAE (classify as Healthy if ALL are true):** 1. ReefIntegrityScore = "Good" OR "Excellent" 2. BleachingEventsPerYear = "Rare" 3. BiodiversityIndex = "High" OR "Very High" 4. PollutionLevel = "Low" **STRONG HEALTHY INDICATORS (classify as Healthy if ALL are true):** 1. PreviousStressIncidents = "None" 2. BleachingEventsPerYear = "Rare" 3. ReefIntegrityScore = "Good" OR "Excellent" 4. BiodiversityIndex = "High" OR "Very High" 5. PollutionLevel = "Low" **MODERATE POLLUTION STRESS (classify as Stressed if ALL are true):** 1. PollutionLevel = "High" 2. ReefIntegrityScore = "Moderate" OR "Poor" OR "Very Poor" 3. BiodiversityIndex = "Low" OR "Very Low" **SEVERE COMBINED STRESS (classify as Stressed if ANY are true):** 1. BleachingEventsPerYear = "Frequent" AND ReefIntegrityScore = "Poor" 2. CurrentFlowQuality = "Poor" AND BleachingEventsPerYear = "Frequent" AND PollutionLevel = "High" **MODERATE COMBINED STRESS (classify as Stressed if 3+ are true):** 1. CurrentFlowQuality = "Poor" 2. AlgalCoverage = "Heavy" OR "Extensive" 3. PredatorActivityLevel = "High" OR "Extreme" OR "Severe" OR "Catastrophic" 4. BleachingEventsPerYear = "Frequent" 5. PollutionLevel = "High" OR "Moderate" 6. ReefIntegrityScore = "Poor" 7. BiodiversityIndex = "Low" OR "Very Low" **DEFAULT:** If none of the above rules apply, classify as "Healthy" Analyze the given reef data and classify it as either "Healthy" or "Stressed" based on these rules.