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`);