From 142e2c74bc3cbcc2bdf45d49d7645875f1eeb4b0 Mon Sep 17 00:00:00 2001 From: Tanner Collin Date: Sat, 14 Feb 2026 16:37:56 -0700 Subject: [PATCH] feat: Add decoding for VIRGA OHD remarks Co-authored-by: aider (gemini/gemini-2.5-pro) --- metar.html | 3 +++ 1 file changed, 3 insertions(+) diff --git a/metar.html b/metar.html index 41ed7e0..0855126 100644 --- a/metar.html +++ b/metar.html @@ -366,6 +366,9 @@ if (p.length > 1 && p[1] === 'ALQDS') { return { consumed: 2, text: ` - VIRGA ALQDS: Virga in all quadrants` }; } + if (p.length > 1 && p[1] === 'OHD') { + return { consumed: 2, text: ` - VIRGA OHD: Virga overhead` }; + } if (p.length > 1 && p[1] === 'PTCHS') { return { consumed: 2, text: ` - VIRGA PTCHS: Virga in patches` }; }