RadarCrossSectionGraphics#

class ansys.stk.core.stkobjects.RadarCrossSectionGraphics#

Class defining graphics properties of radar cross section.

Overview#

set_resolution

Set the azimuth/elevation ranges and resolution.

set_number_of_points

Set the azimuth/elevation ranges and number of points.

show

Opt whether to display graphics for the radar cross section.

frequency

Get or set the frequency.

polarization

Get or set the polarization.

show_at_altitude

Enable the ability to view the contours at a set altitude.

altitude

Get or set the altitude to view the contours.

relative_to_maximum_gain

Get or set the contours value represents the gain value relative to the maximum.

show_labels

Get or set the option for showing contour labels.

number_of_label_decimal_digits

Get or set the integer number of decimal places to display in the contour label.

line_width

Select the line width in which antenna 2D graphics display from the LineWidth enumeration.

color_method

Color method for contours (color ramp or explicit).

start_color

Get or set the color ramp start color.

stop_color

Get or set the color ramp stop color.

levels

Get the collection of contour levels.

azimuth_start

Get the azimuth start value.

azimuth_stop

Get the azimuth stop value.

azimuth_resolution

Get the azimuth resolution.

azimuth_number_of_points

Get the number of azimuth points.

elevation_start

Get the elevation start value.

elevation_stop

Get the elevation stop value.

elevation_resolution

Get the elevation resolution.

elevation_number_of_points

Get the number of elevation points.

Import detail#

from ansys.stk.core.stkobjects import RadarCrossSectionGraphics

Property detail#

property RadarCrossSectionGraphics.show: bool#

Opt whether to display graphics for the radar cross section.

property RadarCrossSectionGraphics.frequency: float#

Get or set the frequency.

property RadarCrossSectionGraphics.polarization: RadarCrossSectionContourGraphicsPolarization#

Get or set the polarization.

property RadarCrossSectionGraphics.show_at_altitude: bool#

Enable the ability to view the contours at a set altitude.

property RadarCrossSectionGraphics.altitude: float#

Get or set the altitude to view the contours.

property RadarCrossSectionGraphics.relative_to_maximum_gain: bool#

Get or set the contours value represents the gain value relative to the maximum.

property RadarCrossSectionGraphics.show_labels: bool#

Get or set the option for showing contour labels.

property RadarCrossSectionGraphics.number_of_label_decimal_digits: int#

Get or set the integer number of decimal places to display in the contour label.

property RadarCrossSectionGraphics.line_width: LineWidth#

Select the line width in which antenna 2D graphics display from the LineWidth enumeration.

property RadarCrossSectionGraphics.color_method: FigureOfMeritGraphics2DColorMethod#

Color method for contours (color ramp or explicit).

property RadarCrossSectionGraphics.start_color: Color#

Get or set the color ramp start color.

property RadarCrossSectionGraphics.stop_color: Color#

Get or set the color ramp stop color.

property RadarCrossSectionGraphics.levels: RadarCrossSectionContourLevelCollection#

Get the collection of contour levels.

property RadarCrossSectionGraphics.azimuth_start: float#

Get the azimuth start value.

property RadarCrossSectionGraphics.azimuth_stop: float#

Get the azimuth stop value.

property RadarCrossSectionGraphics.azimuth_resolution: float#

Get the azimuth resolution.

property RadarCrossSectionGraphics.azimuth_number_of_points: int#

Get the number of azimuth points.

property RadarCrossSectionGraphics.elevation_start: float#

Get the elevation start value.

property RadarCrossSectionGraphics.elevation_stop: float#

Get the elevation stop value.

property RadarCrossSectionGraphics.elevation_resolution: float#

Get the elevation resolution.

property RadarCrossSectionGraphics.elevation_number_of_points: int#

Get the number of elevation points.

Method detail#

RadarCrossSectionGraphics.set_resolution(self, azimuth_start: float, azimuth_stop: float, azimuth_resolution: float, elevation_start: float, elevation_stop: float, elevation_resolution: float) None#

Set the azimuth/elevation ranges and resolution.

Parameters:

azimuth_start : float

azimuth_stop : float

azimuth_resolution : float

elevation_start : float

elevation_stop : float

elevation_resolution : float

Returns:

None

RadarCrossSectionGraphics.set_number_of_points(self, azimuth_start: float, azimuth_stop: float, azimuth_num_points: int, elevation_start: float, elevation_stop: float, elevation_num_points: int) None#

Set the azimuth/elevation ranges and number of points.

Parameters:

azimuth_start : float

azimuth_stop : float

azimuth_num_points : int

elevation_start : float

elevation_stop : float

elevation_num_points : int

Returns:

None