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






Windows & Linux

Description

Configuration options for constellations.

Object Model




Public Properties

Public Property ConstraintsGet the constellation's constraints.
Public Property GraphicsConstellation's 2D graphics settings
Public Property ObjectsGet 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'); 
 
 
Define a constellation
[Python]Copy Code
# IAgStkObjectRoot root: STK Object Model Root 
constellation = root.CurrentScenario.Children.New(6,'MyConstellation') # eConstellation 
constellation.Objects.AddObject(satellite) 
constellation.Objects.Add('*/Facility/MyFacility') 
 
 

CoClasses that Implement IAgConstellation

© 2018 Analytical Graphics, Inc. All Rights Reserved.