Description
AgAzElMask Azimuth-elevation access points.
Public Properties
AltColor | Gets or sets the altitude color. |
AltColorVisible | Display the color at altitude. |
AltVisible | Display the terrain mask at a specified number of steps from the minimum to the maximum altitude above the central body. |
DisplayAltMaximum | The highest altitude above the central body at which the terrain mask is displayed. Uses Distance Dimension. |
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. |
DisplayRangeMaximum | The longest range at which the terrain mask is displayed. Uses Distance Dimension. |
DisplayRangeMinimum | The shortest range at which the terrain mask is displayed. Uses Distance Dimension. |
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. |
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. |
RangeColor | Gets or sets the range color. |
RangeColorVisible | Display the color at range. |
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
[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
|
|