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

Description

Configuration options for constellations.

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.

Interfaces

CoClasses that Implement IAgConstellation

Example

Add a STK Object to constellation using IAgStkObject interface
[C#]
// Add object to constellation
constellation.Objects.AddObject(alos);
Add a STK Object to constellation using STK Object Path
[C#]
// Add object to constellation
constellation.Objects.Add("Satellite/Cameo");
Add a STK Object to constellation using IAgStkObject interface
[Visual Basic .NET]
' Add object to constellation
constellation.Objects.AddObject(alos)
Add a STK Object to constellation using STK Object Path
[Visual Basic .NET]
' Add object to constellation
constellation.Objects.Add("Satellite/Cameo")
Define a constellation
[Python]
# IAgStkObjectRoot root: STK Object Model Root
constellation = root.CurrentScenario.Children.New(6,'MyConstellation') # eConstellation
constellation.Objects.AddObject(satellite)
constellation.Objects.Add('*/Facility/MyFacility')

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

© 2019 Analytical Graphics, Inc. All Rights Reserved.