Click or drag to resize

TrackingArchive<TEntity>.GetMotion<T> 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.3.420.0 (24.3.420.0)
Syntax
public DateMotionCollection<T> GetMotion<T>(
	Object entityIdentifier,
	JulianDate start,
	JulianDate stop,
	params string[] properties
)

Parameters

entityIdentifier
Type: System.Object
The identifier of the entity for which to retrieve data.
start
Type: AGI.Foundation.Time.JulianDate
The earliest time for which to retrieve data.
stop
Type: AGI.Foundation.Time.JulianDate
The latest time for which to retrieve data.
properties
Type:System.String[]
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: DateMotionCollection<T>
An instance of DateMotionCollection<T> representing the requested interval.
See Also