AGI STK Objects 11 Send comments on this topic.
IAgBasicAzElMask Interface





Description

AgAzElMask Azimuth-elevation access points

Public Properties

Public Property AltColor The altitude color
Public Property AltColorVisible Display the color at altitude.
Public Property AltVisible Display the terrain mask at a specified number of steps from the minimum to the maximum altitude above the central body.
Public Property DisplayAltMaximum The highest altitude above the central body at which the terrain mask is displayed. Uses Distance Dimension.
Public Property DisplayAltMinimum The 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 DisplayRangeMaximum The longest range at which the terrain mask is displayed. Uses Distance Dimension.
Public Property DisplayRangeMinimum The shortest range at which the terrain mask is displayed. Uses Distance Dimension.
Public Property NumberOfAltSteps The 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 NumberOfRangeSteps The 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 RangeColor The altitude color
Public Property RangeColorVisible Display the color at range.
Public Property RangeVisible Display 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
[MATLAB] Copy Code
% 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 
 
 
© 2016 Analytical Graphics, Inc. All Rights Reserved.

STK Programming Interface 11.0.1