From c1d3e57fa047464da3eb435dc1384e68ecb6467d Mon Sep 17 00:00:00 2001 From: XANTRONIX Industrial Date: Sun, 30 Mar 2025 00:23:30 -0400 Subject: [PATCH] Use height of 0 for surface (For now) --- lib/xmet/raob.py | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/xmet/raob.py b/lib/xmet/raob.py index 6187a84..1009db4 100644 --- a/lib/xmet/raob.py +++ b/lib/xmet/raob.py @@ -334,6 +334,7 @@ class RAOBObs(): def parse_ttaa_sample(self, tokens: list[str]) -> dict: if tokens[0][0:2] == '99': hp = self.parse_pressure(tokens[0]) + hp['height'] = 0 else: hp = self.parse_height_pressure(tokens[0])