From 4042fa4fd13979f1000f9ebfb5923661169bf9ef Mon Sep 17 00:00:00 2001 From: Tanner Collin Date: Sat, 14 Feb 2026 15:42:47 -0700 Subject: [PATCH] fix: Correct CYVR airport code and name --- metar.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/metar.html b/metar.html index 19bc56c..7c1262c 100644 --- a/metar.html +++ b/metar.html @@ -64,7 +64,7 @@ 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 === 'CYVR') return "CVYR: Vancouver International Airport"; if (code === 'CYBW') return "CYBW: Calgary/Springbank Airport"; console.log(`Unknown Airport code: ${code} in METAR: ${metarString}`); return `${code}: Unknown Airport`;