From 5c3550189aae761d07426f708b0f1e50819382fb Mon Sep 17 00:00:00 2001 From: Tanner Collin Date: Sat, 14 Feb 2026 15:56:20 -0700 Subject: [PATCH] fix: Clarify "VIA" remark decoding output --- metar.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/metar.html b/metar.html index 30e3ad9..04603f4 100644 --- a/metar.html +++ b/metar.html @@ -279,7 +279,7 @@ decoded.push(` - ${decodeCloudTypesRemark(part, metarString)}`); } else if (part === 'VIA' && i + 1 < parts.length) { const location = parts[i+1]; - decoded.push(` - VIA ${location}: via ${location}`); + decoded.push(` - VIA ${location}: relayed via ${location}`); i++; // Consume location } else if (part === 'VIRGA' && i + 1 < parts.length && parts[i+1] === 'ALQDS') { decoded.push(` - VIRGA ALQDS: Virga in all quadrants`);