Constellation#

class ansys.stk.core.stkobjects.Constellation#

Bases: ISTKObject, ILifetimeInformation

Class represents the STK Constellation.

Overview#

objects

Get the collection of objects in the chain.

constraints

Get the constellation’s constraints.

graphics

Constellation’s 2D graphics settings.

routing

Constellation’s routing settings.

Examples#

Define a constellation

# STKObjectRoot root: STK Object Model Root
# Satellite satellite: Satellite object
constellation = root.current_scenario.children.new(STKObjectType.CONSTELLATION, "MyConstellation")
constellation.objects.add_object(satellite)
constellation.objects.add("*/Facility/MyFacility")

Import detail#

from ansys.stk.core.stkobjects import Constellation

Property detail#

property Constellation.objects: ObjectLinkCollection#

Get the collection of objects in the chain.

property Constellation.constraints: ConstellationConstraints#

Get the constellation’s constraints.

property Constellation.graphics: ConstellationGraphics#

Constellation’s 2D graphics settings.

property Constellation.routing: ConstellationRouting#

Constellation’s routing settings.