Skip to content

Commit a9b577f

Browse files
committed
Polished figure titles
1 parent fe35ba8 commit a9b577f

2 files changed

+4
-4
lines changed

robusstod/multiple_target_tracking_with_JPDA.py robusstod/multiple_target_tracking.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,10 @@
4545
print(e.msg)
4646
sys.exit(1) # the exit code of 1 is a convention that means something went wrong
4747
from stonesoup.robusstod.physics.godot import KeplerianToCartesian, diff_equation
48-
fig_title = ' with GODOT functions'
48+
fig_title = ' with GODOT physics'
4949
else:
5050
from stonesoup.robusstod.physics.basic import KeplerianToCartesian, diff_equation
51-
fig_title = ' with basic functions'
51+
fig_title = ' with basic physics'
5252

5353

5454
def get_observation_history(truths, timesteps, measurement_model, sensor_parameters):

robusstod/single_target_tracking_with_no_data_association.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,10 @@
3737
print(e.msg)
3838
sys.exit(1) # the exit code of 1 is a convention that means something went wrong
3939
from stonesoup.robusstod.physics.godot import KeplerianToCartesian, diff_equation
40-
fig_title = ' with GODOT functions'
40+
fig_title = ' with GODOT physics'
4141
else:
4242
from stonesoup.robusstod.physics.basic import KeplerianToCartesian, diff_equation
43-
fig_title = ' with basic functions'
43+
fig_title = ' with basic physics'
4444

4545

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

0 commit comments

Comments
 (0)