Hello,
Rellated topics:
- [1] Access computation between satellite and moving objects like aircraft or ship?
- [2] Usage of IntersatDirectViewDetector with Hermite Interpolator
I would like to create a propagator that allows me to define the trajectory of a land vehicle given a list of position coordinates. But I want the returned position to be a linear propagation between points. (Exemple: I have A [t=0, x=0, y=0, z=0]
and B [t = 52, x=1, y=1, z=0]
, I want MyPropagator.propagate(t=13)
to yield [t = 13, x=0.25, y=0.25, z=0]
and 0 velocity, 0 acceleration).
Like [2], I used PVCoordinates
and Ephemeris
. But Ephemeris
seems to try to propagate a velocity and acceleration as well to find which trajectory could fit between to points. Therefore the position is not propagated “linearly”, if that makes sense.
Is there an easy way to create our own propagator to solve this?