AGI STK Objects 11Send 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]
# IAgSatellite satellite: Satellite object
#Set swath in the 2D properties
swath = satellite.Graphics.Swath
swath.SetElevationType(0) # eElevationGroundElevation
swath.Elevation.Angle = 30  # deg
satellite.Graphics.Swath.Options = 0 # 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';

© 2019 Analytical Graphics, Inc. All Rights Reserved.