Skip to content

Commit

Permalink
Polished figure titles
Browse files Browse the repository at this point in the history
  • Loading branch information
narykov committed Aug 11, 2023
1 parent fe35ba8 commit a9b577f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,10 @@
print(e.msg)
sys.exit(1) # the exit code of 1 is a convention that means something went wrong
from stonesoup.robusstod.physics.godot import KeplerianToCartesian, diff_equation
fig_title = ' with GODOT functions'
fig_title = ' with GODOT physics'
else:
from stonesoup.robusstod.physics.basic import KeplerianToCartesian, diff_equation
fig_title = ' with basic functions'
fig_title = ' with basic physics'


def get_observation_history(truths, timesteps, measurement_model, sensor_parameters):
Expand Down
4 changes: 2 additions & 2 deletions robusstod/single_target_tracking_with_no_data_association.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@
print(e.msg)
sys.exit(1) # the exit code of 1 is a convention that means something went wrong
from stonesoup.robusstod.physics.godot import KeplerianToCartesian, diff_equation
fig_title = ' with GODOT functions'
fig_title = ' with GODOT physics'
else:
from stonesoup.robusstod.physics.basic import KeplerianToCartesian, diff_equation
fig_title = ' with basic functions'
fig_title = ' with basic physics'


def do_single_target_tracking(prior=None, predictor=None, updater=None, measurements=None):
Expand Down

0 comments on commit a9b577f

Please sign in to comment.