Description
Configuration options for constellations.
Public Properties
Constraints | Get the constellation's constraints. |
Graphics | Constellation's 2D graphics settings. |
Objects | Get the collection of objects in the chain. |
Routing | Constellation'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');
|
|