diff --git a/core/src/main/java/org/orekit/rugged/api/Rugged.java b/core/src/main/java/org/orekit/rugged/api/Rugged.java index 74663b2936ae68bf7e930800136eaf5bee2bc7ce..09e5e9989bce5072eb8a964bf047a43b43f4ba81 100644 --- a/core/src/main/java/org/orekit/rugged/api/Rugged.java +++ b/core/src/main/java/org/orekit/rugged/api/Rugged.java @@ -645,6 +645,36 @@ public class Rugged { } + /** Get transform from spacecraft to inertial frame. + * @param date date of the transform + * @return transform from spacecraft to inertial frame + * @exception RuggedException if spacecraft position or attitude cannot be computed at date + */ + public Transform getScToInertial(final AbsoluteDate date) + throws RuggedException { + return scToBody.getScToInertial(date); + } + + /** Get transform from inertial frame to observed body frame. + * @param date date of the transform + * @return transform from inertial frame to observed body frame + * @exception RuggedException if frames cannot be computed at date + */ + public Transform getInertialToBody(final AbsoluteDate date) + throws RuggedException { + return scToBody.getInertialToBody(date); + } + + /** Get transform from observed body frame to inertial frame. + * @param date date of the transform + * @return transform from observed body frame to inertial frame + * @exception RuggedException if frames cannot be computed at date + */ + public Transform getBodyToInertial(final AbsoluteDate date) + throws RuggedException { + return scToBody.getBodyToInertial(date); + } + /** Get a sensor. * @param sensorName sensor name * @return selected sensor