TransformProvider.java

  1. /* Copyright 2002-2025 CS GROUP
  2.  * Licensed to CS GROUP (CS) under one or more
  3.  * contributor license agreements.  See the NOTICE file distributed with
  4.  * this work for additional information regarding copyright ownership.
  5.  * CS licenses this file to You under the Apache License, Version 2.0
  6.  * (the "License"); you may not use this file except in compliance with
  7.  * the License.  You may obtain a copy of the License at
  8.  *
  9.  *   http://www.apache.org/licenses/LICENSE-2.0
  10.  *
  11.  * Unless required by applicable law or agreed to in writing, software
  12.  * distributed under the License is distributed on an "AS IS" BASIS,
  13.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14.  * See the License for the specific language governing permissions and
  15.  * limitations under the License.
  16.  */

  17. package org.orekit.frames;

  18. import org.hipparchus.CalculusFieldElement;
  19. import org.orekit.time.AbsoluteDate;
  20. import org.orekit.time.FieldAbsoluteDate;

  21. /** Interface for Transform providers.
  22.  * <p>The transform provider interface is mainly used to define the
  23.  * transform between a frame and its parent frame.
  24.  * </p>
  25.  * @author Luc Maisonobe
  26.  */
  27. public interface TransformProvider {

  28.     /** Get the {@link Transform} corresponding to specified date.
  29.      * @param date current date
  30.      * @return transform at specified date
  31.      */
  32.     Transform getTransform(AbsoluteDate date);

  33.     /** Get the {@link FieldTransform} corresponding to specified date.
  34.      * @param date current date
  35.      * @param <T> type of the field elements
  36.      * @return transform at specified date
  37.      * @since 9.0
  38.      */
  39.     <T extends CalculusFieldElement<T>> FieldTransform<T> getTransform(FieldAbsoluteDate<T> date);

  40.     /**
  41.      * Get a transform for position and velocity, not acceleration.
  42.      *
  43.      * <p>The default implementation returns {@link #getTransform(AbsoluteDate)}
  44.      * but implementations may override it for better performance.
  45.      *
  46.      * @param date current date.
  47.      * @return the kinematic transform.
  48.      * @since 12.1
  49.      */
  50.     default KinematicTransform getKinematicTransform(AbsoluteDate date) {
  51.         return getTransform(date);
  52.     }

  53.     /**
  54.      * Get a transform for position and velocity, not acceleration.
  55.      *
  56.      * <p>The default implementation returns {@link #getTransform(AbsoluteDate)}
  57.      * but implementations may override it for better performance.
  58.      *
  59.      * @param <T> type of the elements
  60.      * @param date current date.
  61.      * @return the kinematic transform.
  62.      * @since 12.1
  63.      */
  64.     default <T extends CalculusFieldElement<T>> FieldKinematicTransform<T> getKinematicTransform(FieldAbsoluteDate<T> date) {
  65.         return getTransform(date);
  66.     }

  67.     /**
  68.      * Get a transform for only rotations and translations on the specified date.
  69.      *
  70.      * <p>The default implementation calls {@link #getTransform(AbsoluteDate)}
  71.      * but implementations may override it for better performance.
  72.      *
  73.      * @param date current date.
  74.      * @return the static transform.
  75.      */
  76.     default StaticTransform getStaticTransform(AbsoluteDate date) {
  77.         return getTransform(date).toStaticTransform();
  78.     }

  79.     /**
  80.      * Get a transform for only rotations and translations on the specified date.
  81.      *
  82.      * <p>The default implementation returns {@link #getTransform(AbsoluteDate)}
  83.      * but implementations may override it for better performance.
  84.      *
  85.      * @param <T> type of the elements
  86.      * @param date current date.
  87.      * @return the static transform.
  88.      * @since 12.0
  89.      */
  90.     default <T extends CalculusFieldElement<T>> FieldStaticTransform<T> getStaticTransform(FieldAbsoluteDate<T> date) {
  91.         return getTransform(date).toStaticTransform();
  92.     }

  93. }