STK ObjectsSend comments on this topic.
IAgVeGfxSwath Interface

Description

Vehicle swath interface.

Public Methods

Public Method IsElevationTypeSupportedGets a value indicating whether the specified type can be used.
Public Method SetElevationTypeMethod to set the elevation type.

Public Properties

Public Property ElevationGet the elevation value.
Public Property ElevationSupportedTypesReturns an array of valid choices.
Public Property ElevationTypeGround elevation, swath half width or vehicle half angle.
Public Property OptionsOptions for swath display.

Example

Set 2D Swath
[Python - STK API]
# IAgSatellite satellite: Satellite object
# Set swath in the 2D properties
swath = satellite.Graphics.Swath
swath.SetElevationType(AgEVeGfxElevation.eElevationGroundElevation)
swath.Elevation.Angle = 30  # deg
satellite.Graphics.Swath.Options = AgEVeGfxOptions.eOptionsEdgeLimits

Set 2D Swath
[MATLAB]
% IAgSatellite satellite: Satellite object
% Set swath in the 2D properties
swath = satellite.Graphics.Swath;
swath.SetElevationType('eElevationGroundElevation');
swath.Elevation.Angle = 30;  % deg
satellite.Graphics.Swath.Options = 'eOptionsEdgeLimits';


        
© 2024 Analytical Graphics, Inc. All Rights Reserved.