STK ObjectsSend 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.
Public Property RoutingConstellation's routing settings

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 - STK API]
# IAgStkObjectRoot root: STK Object Model Root
# IAgSatellite satellite: Satellite object
constellation = root.CurrentScenario.Children.New(AgESTKObjectType.eConstellation, 'MyConstellation')
constellation.Objects.AddObject(satellite)
constellation.Objects.Add('*/Facility/MyFacility')

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


        
© 2024 Analytical Graphics, Inc. All Rights Reserved.