Uses of Interface
org.orekit.frames.StaticTransform
-
Packages that use StaticTransform Package Description org.orekit.estimation.measurements The measurements package defines everything that is related to orbit determination measurements.org.orekit.estimation.measurements.modifiers This package provides measurement modifier.org.orekit.frames This package provides classes to handle frames and transforms between them.org.orekit.propagation Propagationorg.orekit.propagation.semianalytical.dsst.forces This package provides force models for Draper Semi-analytical Satellite Theory (DSST). -
-
Uses of StaticTransform in org.orekit.estimation.measurements
Methods in org.orekit.estimation.measurements that return StaticTransform Modifier and Type Method Description StaticTransform
EstimatedEarthFrameProvider. getStaticTransform(AbsoluteDate date)
Get a transform for only rotations and translations on the specified date. -
Uses of StaticTransform in org.orekit.estimation.measurements.modifiers
Methods in org.orekit.estimation.measurements.modifiers with parameters of type StaticTransform Modifier and Type Method Description double
PhaseCentersOffsetComputer. offset(StaticTransform emitterToInert, StaticTransform receiverToInert)
Compute distance offset to be added to the distance between antennas reference points. -
Uses of StaticTransform in org.orekit.frames
Subinterfaces of StaticTransform in org.orekit.frames Modifier and Type Interface Description interface
KinematicTransform
A transform that only includes translation and rotation as well as their respective rates.Classes in org.orekit.frames that implement StaticTransform Modifier and Type Class Description class
Transform
Transformation class in three dimensional space.Methods in org.orekit.frames that return StaticTransform Modifier and Type Method Description static StaticTransform
StaticTransform. compose(AbsoluteDate date, StaticTransform first, StaticTransform second)
Build a transform by combining two existing ones.static StaticTransform
StaticTransform. getIdentity()
Get the identity static transform.StaticTransform
StaticTransform. getInverse()
Get the inverse transform of the instance.default StaticTransform
StaticTransform. getStaticInverse()
Get the inverse transform of the instance in static form (without rates).StaticTransform
GTODProvider. getStaticTransform(AbsoluteDate date)
Get a transform for only rotations and translations on the specified date.StaticTransform
HelmertTransformation. getStaticTransform(AbsoluteDate date)
Get a transform for only rotations and translations on the specified date.StaticTransform
ITRFVersion.Converter. getStaticTransform(AbsoluteDate date)
Get a transform for only rotations and translations on the specified date.StaticTransform
L1TransformProvider. getStaticTransform(AbsoluteDate date)
Get a transform for only rotations and translations on the specified date.StaticTransform
ShiftingTransformProvider. getStaticTransform(AbsoluteDate date)
Get a transform for only rotations and translations on the specified date.default StaticTransform
TransformProvider. getStaticTransform(AbsoluteDate date)
Get a transform for only rotations and translations on the specified date.StaticTransform
Frame. getStaticTransformTo(Frame destination, AbsoluteDate date)
Get the static portion of the transform from the instance to another frame.static StaticTransform
StaticTransform. of(AbsoluteDate date, Rotation rotation)
Create a new static transform from a rotation and zero translation.static StaticTransform
StaticTransform. of(AbsoluteDate date, Vector3D translation)
Create a new static transform from a translation and rotation.static StaticTransform
StaticTransform. of(AbsoluteDate date, Vector3D translation, Rotation rotation)
Create a new static transform from a translation and rotation.StaticTransform
Transform. staticShiftedBy(double dt)
Shift the transform in time considering all rates, then return only the translation and rotation portion of the transform.StaticTransform
Transform. toStaticTransform()
Create a so-called static transform from the instance.Methods in org.orekit.frames with parameters of type StaticTransform Modifier and Type Method Description static StaticTransform
StaticTransform. compose(AbsoluteDate date, StaticTransform first, StaticTransform second)
Build a transform by combining two existing ones.static Rotation
StaticTransform. compositeRotation(StaticTransform first, StaticTransform second)
Compute a composite rotation.static Vector3D
StaticTransform. compositeTranslation(StaticTransform first, StaticTransform second)
Compute a composite translation.static <T extends CalculusFieldElement<T>>
FieldStaticTransform<T>FieldStaticTransform. of(FieldAbsoluteDate<T> date, StaticTransform staticTransform)
Create a new static transform from anFieldAbsoluteDate
and aStaticTransform
. -
Uses of StaticTransform in org.orekit.propagation
Methods in org.orekit.propagation that return StaticTransform Modifier and Type Method Description StaticTransform
SpacecraftState. toStaticTransform()
Compute the static transform from state defining frame to spacecraft frame. -
Uses of StaticTransform in org.orekit.propagation.semianalytical.dsst.forces
Methods in org.orekit.propagation.semianalytical.dsst.forces that return StaticTransform Modifier and Type Method Description StaticTransform
DSSTGravityContext. getBodyFixedToInertialTransform()
Getter for the bodyFixedToInertialTransform.
-