TrackingArchiveTEntityGetMotionT 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> GetMotion<T>(
Object entityIdentifier,
JulianDate start,
JulianDate stop,
params string[] properties
)
Public Function GetMotion(Of T) (
entityIdentifier As Object,
start As JulianDate,
stop As JulianDate,
ParamArray properties As String()
) As DateMotionCollection(Of T)
public:
generic<typename T>
DateMotionCollection<T>^ GetMotion(
Object^ entityIdentifier,
JulianDate start,
JulianDate stop,
... array<String^>^ properties
)
member GetMotion :
entityIdentifier : Object *
start : JulianDate *
stop : JulianDate *
properties : string[] -> DateMotionCollection<'T>
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 positions of the entity over time, pass
Position as the first property, and
Velocity and
Acceleration as the successive
properties, if applicable.
Type Parameters
- T
-
The type of data to retrieve. For example, this would be Cartesian for
position and velocity data.
Return Value
Type:
DateMotionCollectionTAn instance of
DateMotionCollectionT representing the requested interval.
See Also