TrackingArchiveTEntityGetPositions Method (Object, JulianDate, JulianDate) | 
 
            Gets a 
DateMotionCollectionT representing the
            archived position, velocity and acceleration of the specified entity
            beginning at the specified time and lasting for the specified duration.
            
 
    Namespace: 
   AGI.Foundation.Tracking
    Assembly:
   AGI.Foundation.Tracking (in AGI.Foundation.Tracking.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic DateMotionCollection<Cartesian> GetPositions(
	Object entityIdentifier,
	JulianDate start,
	JulianDate stop
)
Public Function GetPositions ( 
	entityIdentifier As Object,
	start As JulianDate,
	stop As JulianDate
) As DateMotionCollection(Of Cartesian)
public:
DateMotionCollection<Cartesian>^ GetPositions(
	Object^ entityIdentifier, 
	JulianDate start, 
	JulianDate stop
)
member GetPositions : 
        entityIdentifier : Object * 
        start : JulianDate * 
        stop : JulianDate -> DateMotionCollection<Cartesian> 
Parameters
- entityIdentifier
 - Type: SystemObject
The identifier of the entity whose data is to be retrieved. - start
 - Type: AGI.Foundation.TimeJulianDate
The date of the earliest data point to retrieve. - stop
 - Type: AGI.Foundation.TimeJulianDate
The time of the last data point to retrieve. 
Return Value
Type: 
DateMotionCollectionCartesianA 
DateMotionCollectionT representing the archived data.
See Also