AGI STK Objects 11 Send comments on this topic.
IAgVeGfxSwath Interface
Windows






Windows & Linux

Description

Vehicle swath interface.

Object Model


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
[MATLAB]Copy Code
% 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'; 
 
 
Set 2D Swath
[Python]Copy Code
# 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 
 
 
© 2018 Analytical Graphics, Inc. All Rights Reserved.