STK ObjectsSend comments on this topic.
IAgBasicAzElMask Interface

Description

AgAzElMask Azimuth-elevation access points

Public Properties

Public Property AltColorThe altitude color
Public Property AltColorVisibleDisplay the color at altitude.
Public Property AltVisibleDisplay the terrain mask at a specified number of steps from the minimum to the maximum altitude above the central body.
Public Property DisplayAltMaximumThe highest altitude above the central body at which the terrain mask is displayed. Uses Distance Dimension.
Public Property DisplayAltMinimumThe lowest altitude at which the terrain mask is displayed. The minimum altitude must be at least equal to the altitude of the facility, place or target, including the height above ground, if specified. Uses Distance Dimension.
Public Property DisplayRangeMaximumThe longest range at which the terrain mask is displayed. Uses Distance Dimension.
Public Property DisplayRangeMinimumThe shortest range at which the terrain mask is displayed. Uses Distance Dimension.
Public Property NumberOfAltStepsThe relative intervals at which the terrain mask is displayed, e.g. if this value is 3 steps, and the minimum and maximum altitudes are 500 and 1500 km, respectively, then the terrain mask is displayed at altitudes of 500, 1000 and 1500 km.
Public Property NumberOfRangeStepsThe relative intervals at which the terrain mask is displayed, e.g. if this value is 3 steps, and the minimum and maximum ranges are 500 abd 1500 km, respectively, then the terrain mask is displayed at ranges of 500, 1000 and 1500 km.
Public Property RangeColorThe altitude color
Public Property RangeColorVisibleDisplay the color at range.
Public Property RangeVisibleDisplay the terrain mask at the specified number of steps from the minimum to the maximum range from the facility, place or target.

Example

Display the AzElMask in 2D/3D
[Python - STK API]
# IAgFacility facility: Facility Object
azelMask = facility.Graphics.AzElMask
azelMask.RangeVisible = True
azelMask.NumberOfRangeSteps = 10
azelMask.DisplayRangeMinimum = 0    # km
azelMask.DisplayRangeMaximum = 100  # km
azelMask.RangeColorVisible = True
azelMask.RangeColor = Colors.Cyan

Display the AzElMask in 2D/3D
[MATLAB]
% IAgFacility facility: Facility Object
azelMask = facility.Graphics.AzElMask;
azelMask.RangeVisible = true;
azelMask.NumberOfRangeSteps = 10;
azelMask.DisplayRangeMinimum = 0;   % km
azelMask.DisplayRangeMaximum = 100;  % km
azelMask.RangeColorVisible = true;
azelMask.RangeColor = 16776960; % cyan


        
© 2024 Analytical Graphics, Inc. All Rights Reserved.