feat: Add airport codes for CYEG, CYXS, CVYR, and CYBW

Co-authored-by: aider (gemini/gemini-2.5-pro) <aider@aider.chat>
This commit is contained in:
2026-02-14 15:37:39 -07:00
parent 6f375aed92
commit 173d025ef4
+4
View File
@@ -62,6 +62,10 @@
function decodeAirport(code, metarString) {
if (code === 'CYYC') return "CYYC: Calgary International Airport";
if (code === 'CYEG') return "CYEG: Edmonton International Airport";
if (code === 'CYXS') return "CYXS: Prince George Airport";
if (code === 'CVYR') return "CVYR: Deer Lake Regional Airport";
if (code === 'CYBW') return "CYBW: Calgary/Springbank Airport";
console.log(`Unknown Airport code: ${code} in METAR: ${metarString}`);
return `${code}: Unknown Airport`;
}