How to create a moving platform that follows a user-defined path #578
-
Hi. I'm using Stone Soup on a real dataset and I have a question about the moving platforms. My data is air-to-ground and I would like to use a |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
You could use the |
Beta Was this translation helpful? Give feedback.
You could use the
create_smooth_transition_models
(constant accel, constant turn) orConstantJerkSimulator
(constant jerk) simulators to achieve this. You pass them a sequence of timestamped states and they will attempt to generate a sequence of transition models and durations (intended to be passed to theMultiTransitionMovingPlatform
) that will allow a platform to achieve the states in the timestamps specified.See:
https://stonesoup.readthedocs.io/en/latest/auto_examples/Smooth_Platform_Coordinate_Transitions.html#sphx-glr-auto-examples-smooth-platform-coordinate-transitions-py