Files
award/award-definitions/wae.json
Joerg aa55158347 feat: add WAE (Worked All Europe) award implementation
Implement DARC's WAE award with dual metrics tracking (countries + bandpoints).

Features:
- 54 European countries with correct DXCC entityIds from ARRL
- 8 WAE-specific entities (Shetland, Sicily, Sardinia, Crete, etc.)
- Bandpoints calculation: 1 pt/band (2 pts for 160m/80m), max 5 bands/country
- 5 award levels: WAE III (40/100), WAE II (50/150), WAE I (60/200),
  WAE TOP (70/300), WAE Trophy (all/365)
- Mode groups: CW, SSB, RTTY, FT8, Digi-Modes, Mixed-Mode
- Admin UI support for creating/editing WAE awards
- Award detail page with dual metrics display

Files:
- award-data/wae-country-list.json: WAE country definitions
- award-definitions/wae.json: Award configuration
- src/backend/services/awards.service.js: WAE calculation functions
- src/frontend: Admin and award detail views

Co-Authored-By: Claude <noreply@anthropic.com>
2026-01-23 18:07:52 +01:00

34 lines
1.4 KiB
JSON

{
"id": "wae",
"name": "WAE",
"description": "Worked All Europe - Contact and confirm European countries from the WAE Country List",
"caption": "Worked All Europe Award. Bandpoints: 1 point per band (2 points for 80m/160m), maximum 5 bands per country. Available in multiple mode variants.",
"category": "darc",
"modeGroups": {
"CW": ["CW"],
"SSB": ["SSB", "AM", "FM"],
"RTTY": ["RTTY"],
"FT8": ["FT8"],
"Digi-Modes": ["FT4", "FT8", "JT65", "JT9", "MFSK", "PSK31", "RTTY"],
"Classic Digi-Modes": ["PSK31", "RTTY"],
"Mixed-Mode w/o WSJT-Modes": ["PSK31", "RTTY", "AM", "SSB", "FM", "CW"],
"Phone-Modes": ["AM", "SSB", "FM"]
},
"rules": {
"type": "wae",
"targetCountries": 40,
"targetBandpoints": 100,
"doublePointBands": ["160m", "80m"],
"maxBandsPerCountry": 5,
"excludeDeletedForTop": true,
"waeCountryList": "wae-country-list.json"
},
"achievements": [
{ "name": "WAE III", "thresholdCountries": 40, "thresholdBandpoints": 100 },
{ "name": "WAE II", "thresholdCountries": 50, "thresholdBandpoints": 150 },
{ "name": "WAE I", "thresholdCountries": 60, "thresholdBandpoints": 200 },
{ "name": "WAE TOP", "thresholdCountries": 70, "thresholdBandpoints": 300, "excludeDeleted": true },
{ "name": "WAE Trophy", "thresholdCountries": 999, "thresholdBandpoints": 365, "requireAllCountries": true }
]
}