TrackingArchiveTEntityGetMotionT, TDerivative Method (Object, JulianDate, JulianDate, String) |
Gets time-varying data, such as position and velocity, from the archive.
Namespace:
AGI.Foundation.Tracking
Assembly:
AGI.Foundation.Tracking (in AGI.Foundation.Tracking.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public DateMotionCollection<T, TDerivative> GetMotion<T, TDerivative>(
Object entityIdentifier,
JulianDate start,
JulianDate stop,
params string[] properties
)
Public Function GetMotion(Of T, TDerivative) (
entityIdentifier As Object,
start As JulianDate,
stop As JulianDate,
ParamArray properties As String()
) As DateMotionCollection(Of T, TDerivative)
public:
generic<typename T, typename TDerivative>
DateMotionCollection<T, TDerivative>^ GetMotion(
Object^ entityIdentifier,
JulianDate start,
JulianDate stop,
... array<String^>^ properties
)
member GetMotion :
entityIdentifier : Object *
start : JulianDate *
stop : JulianDate *
properties : string[] -> DateMotionCollection<'T, 'TDerivative>
Parameters
- entityIdentifier
- Type: SystemObject
The identifier of the entity for which to retrieve data. - start
- Type: AGI.Foundation.TimeJulianDate
The earliest time for which to retrieve data. - stop
- Type: AGI.Foundation.TimeJulianDate
The latest time for which to retrieve data. - properties
- Type: SystemString
The names of the properties to include in the returned collection. The first string is the name of the
property representing the Value of the motion, the second
is the name of the property representing the FirstDerivative
of the motion, and so on. To obtain the orientations of the entity over time, pass
Orientation as the first property, and
RotationalVelocity and
RotationalAcceleration as the successive
properties, if applicable.
Type Parameters
- T
-
The type of value data to retrieve. For example, this would be UnitQuaternion for
rotation and rotational velocity data.
- TDerivative
-
The type of derivative data to retrieve. For example, this would be Cartesian for
rotation and rotational velocity data.
Return Value
Type:
DateMotionCollectionT,
TDerivativeAn instance of
DateMotionCollectionT, TDerivative representing the requested interval.
See Also