From 262bc38b50dc243c6268a61db9fa026ab1e4b937 Mon Sep 17 00:00:00 2001 From: Adam Shapiro Date: Wed, 8 May 2024 16:03:13 -0400 Subject: [PATCH] Fixed corrected heading solution type in hover text. --- python/fusion_engine_client/analysis/analyzer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/fusion_engine_client/analysis/analyzer.py b/python/fusion_engine_client/analysis/analyzer.py index c3334a5b..1f1f7b6c 100755 --- a/python/fusion_engine_client/analysis/analyzer.py +++ b/python/fusion_engine_client/analysis/analyzer.py @@ -2005,7 +2005,7 @@ def plot_heading_measurements(self): marker={'color': 'green'}, hovertemplate='Time: %{x:.3f} sec (%{customdata:.3f} sec)' '
Solution: %{text}', - text=[str(SolutionType(s)) for s in raw_heading_data.solution_type], + text=[str(SolutionType(s)) for s in heading_data.solution_type], name='Corrected Heading Solution Type' ), row=3, col=1