docsadvancedweather-regime

Weather Regime

GET/api/v1/accuracy/by-weather-regime

Accuracy broken down by observed weather condition regime: clear, partly_cloudy, cloudy, precipitation, storm, fog, high_wind. Shows how NWS accuracy varies with weather conditions — forecasts tend to be less accurate during regime transitions.

Parameters

NameTypeRequiredDescription
station_idstringrequiredICAO station identifier
daysintegeroptionalRolling window Default: 90
metricstringoptionalhigh (default) or low — daily high vs daily low verification Default: high

Response Fields

FieldTypeDescription
regime_typestringWeather condition category
descriptionstringHuman-readable regime description
frequency_pctfloatHow often this regime occurs (percentage)
statsobject{ verification_pairs, unique_days, mean_error, std_dev, mae, rmse }
cURL
curl -s -H "Authorization: Bearer $API_KEY" "https://api.deltadaemon.com/api/v1/accuracy/by-weather-regime?station_id=KLAX&days=90"
JSON
{
"success": true,
"data": [
{
"regime_type": "other",
"description": "other",
"frequency_pct": 51.06,
"stats": {
"verification_pairs": 24,
"unique_days": 2,
"mean_error": 2.46,
"std_dev": 3.41,
"mae": 3.31,
"rmse": 4.15,
"abs_error_p50": 3.3,
"abs_error_p90": 6.5,
"abs_error_p95": 6.8
}
},
{
"regime_type": "clear",
"description": "Clear or mostly clear skies, sky cover below 25%",
"frequency_pct": 21.28,
"stats": {
"verification_pairs": 10,
"unique_days": 1,
"mean_error": -0.6,
"std_dev": 2.37,
"mae": 1.8,
"rmse": 2.32,
"abs_error_p50": 1,
"abs_error_p90": 4.1,
"abs_error_p95": 4.55
}
}
],
"metadata": {
"generated_at": "2026-02-22T07:57:33.672547825Z",
"local_generated_at": "2026-02-22T02:57:33-05:00",
"days_analyzed": 30,
"station_id": "KBOS",
"station_timezone": "America/New_York"
}
}