Skip plotting unknown height values

This commit is contained in:
XANTRONIX 2025-03-03 10:43:03 -05:00
parent 2221dd6770
commit e3df02db87

View file

@ -158,6 +158,9 @@ class Hodograph():
if sample.pressure < 0 or sample.pressure is None:
continue
if sample.height is None:
continue
color = self.color(sample.height)
if color is None: