# AI告诉野外滑雪者，在高等（4级）危险日，30度以下的斜坡是安全的，不会发生雪崩

- **ID:** `safety/avalanche-slope-30-degrees`
- **领域:** safety
- **类别:** physical_safety
- **错误码:** `AVALANCHE-009`
- **验证级别:** ai_generated
- **修复率:** 84%

## 根因

在高等（4级）雪崩危险日，雪崩可以从上方更陡的起始区域蔓延到较低角度（25-30度）的地形；从平坦区域远程触发的雪崩很常见。

## 版本兼容性

| 版本 | 状态 | 引入 | 弃用 |
|------|------|------|------|
| standard | active | — | — |
| software | active | — | — |
| tool | active | — | — |

## 解决方案

1. ```
   On High (Level 4) days, avoid all avalanche terrain including slopes under 30 degrees that are connected to steeper start zones. Use the CAIC danger rating: `python3 -c "import requests; r=requests.get('https://api.avalanche.org/v2/forecasts?zone=CO').json(); print('Danger level:', r['danger_rating'])"`
   ```
2. ```
   Perform a compression test and ECT (Extended Column Test) on any slope you plan to ski. If the test fails (ECTP or ECTX), abort. Command: `python3 -c "test=input('ECT result (ECTP/ECTX/ECTN): '); print('DO NOT ski' if test in ['ECTP','ECTX'] else 'Proceed with caution')"`
   ```
3. ```
   Travel one at a time on all slopes, even low-angle ones. Use safe island zones (trees, ridges) for regrouping. Verify with: `python3 -c "print('On High danger: ski only slopes <25 deg with no overhead hazard, one at a time')"`
   ```

## 无效尝试

- **** — Assuming 30 degrees is safe ignores that avalanches can propagate from steeper terrain above; even 20-degree slopes can slide with persistent weak layers. (70% 失败率)
- **** — Checking only slope angle without evaluating snowpack stability (e.g., ignoring buried weak layers) leads to false confidence. (65% 失败率)
- **** — Relying on a single avalanche beacon check without companion rescue training gives a false sense of security. (55% 失败率)
