fix: Clarify "VIA" remark decoding output

This commit is contained in:
2026-02-14 15:56:20 -07:00
committed by Tanner Collin (aider)
parent c9ab314394
commit 5c3550189a
+1 -1
View File
@@ -279,7 +279,7 @@
decoded.push(` - ${decodeCloudTypesRemark(part, metarString)}`); decoded.push(` - ${decodeCloudTypesRemark(part, metarString)}`);
} else if (part === 'VIA' && i + 1 < parts.length) { } else if (part === 'VIA' && i + 1 < parts.length) {
const location = parts[i+1]; const location = parts[i+1];
decoded.push(` - VIA ${location}: via ${location}`); decoded.push(` - VIA ${location}: relayed via ${location}`);
i++; // Consume location i++; // Consume location
} else if (part === 'VIRGA' && i + 1 < parts.length && parts[i+1] === 'ALQDS') { } else if (part === 'VIRGA' && i + 1 < parts.length && parts[i+1] === 'ALQDS') {
decoded.push(` - VIRGA ALQDS: Virga in all quadrants`); decoded.push(` - VIRGA ALQDS: Virga in all quadrants`);