Skip to content

Commit

Permalink
Add HDOP, VDOP, and speed accuracy to GPS plot
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexKlimaj authored and dagar committed Jul 11, 2024
1 parent 6382feb commit 0c8589c
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions app/plot_app/configured_plots.py
Original file line number Diff line number Diff line change
Expand Up @@ -811,8 +811,11 @@ def generate_plots(ulog, px4_ulog, db_data, vehicle_data, link_to_3d_page,
title='GPS Uncertainty', y_range=Range1d(0, 40),
plot_height='small', changed_params=changed_params,
x_range=x_range)
data_plot.add_graph(['eph', 'epv', 'satellites_used', 'fix_type'], colors8[::2],
['Horizontal position accuracy [m]', 'Vertical position accuracy [m]',
data_plot.add_graph(['eph', 'epv', 'hdop', 'vdop', 's_variance_m_s',
'satellites_used', 'fix_type'], colors8,
['Horizontal position accuracy [m]',
'Vertical position accuracy [m]', 'Horizontal dilution of precision [m]',
'Vertical dilution of precision [m]', 'Speed accuracy [m/s]',
'Num Satellites used', 'GPS Fix'])
if data_plot.finalize() is not None: plots.append(data_plot)

Expand Down

0 comments on commit 0c8589c

Please sign in to comment.