Skip to content

Commit

Permalink
Add dist_bottom to distance 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 c4d9a6d commit 998ffcd
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions app/plot_app/configured_plots.py
Original file line number Diff line number Diff line change
Expand Up @@ -795,6 +795,11 @@ def generate_plots(ulog, px4_ulog, db_data, vehicle_data, link_to_3d_page,
x_range=x_range)
data_plot.add_graph(['current_distance', 'variance'], colors3[0:2],
['Distance', 'Variance'])

# dist_bottom from estimator
data_plot.change_dataset('vehicle_local_position')
data_plot.add_graph(['dist_bottom', 'dist_bottom_valid'], colors8[2:4],
['Estimated Distance Bottom [m]', 'Dist Bottom Valid'])
if data_plot.finalize() is not None: plots.append(data_plot)


Expand Down

0 comments on commit 998ffcd

Please sign in to comment.