AGI STK Objects 11 Send comments on this topic.
IAgConstellation Interface





Description

Configuration options for constellations.

Object Model




Public Properties

Public Property Constraints Get the constellation's constraints.
Public Property Graphics Constellation's 2D graphics settings
Public Property Objects Get the collection of objects in the chain.

Example

Add a STK Object to constellation using IAgStkObject interface
[C#] Copy Code
// Add object to constellation 
constellation.Objects.AddObject(alos); 
 

Add a STK Object to constellation using STK Object Path
[C#] Copy Code
// Add object to constellation 
constellation.Objects.Add("Satellite/Cameo"); 
 

Add a STK Object to constellation using IAgStkObject interface
[Visual Basic .NET] Copy Code
' Add object to constellation
constellation.Objects.AddObject(alos)

Add a STK Object to constellation using STK Object Path
[Visual Basic .NET] Copy Code
' Add object to constellation
constellation.Objects.Add("Satellite/Cameo")

Define a constellation
[MATLAB] Copy Code
% IAgStkObjectRoot root: STK Object Model Root 
constellation = root.CurrentScenario.Children.New('eConstellation','MyConstellation'); 
constellation.Objects.AddObject(satellite); 
constellation.Objects.Add('*/Facility/MyFacility'); 
 
 

CoClasses that Implement IAgConstellation

© 2016 Analytical Graphics, Inc. All Rights Reserved.

STK Programming Interface 11.0.1