Swath#
- class ansys.stk.core.stkobjects.Swath#
Class defining Swath properties.
Overview#
Add an interval to the list of valid swath intervals. Start/Stop Times use DateFormat Dimension. |
|
Modify an interval given an index. Start/Stop Times use DateFormat Dimension. |
|
Retrieve an index given a start and stop time. Start/Stop Times use DateFormat Dimension. |
|
Remove the interval given the start and stop times. Start/Stop Times use DateFormat Dimension. |
|
Remove an interval given an index. |
|
Remove all intervals. |
|
Return an array of all time intervals. |
Enable swath. |
|
Get or set the color in which swath graphics are displayed in the 2D Graphics window. |
|
Get or set the style of the line defining the boundaries of the swath display in the 2D Graphics window. A member of the LineStyle enumeration. |
|
Get or set the width of the line defining the boundaries of the swath display in the 2D Graphics window. A member of the LineWidth enumeration. |
|
Number of Time Intervals. |
|
Get or set the minimum step size for the adaptive step size of swath computation. |
|
Get or set the maximum step size for the adaptive step size of swath computation. |
|
Whether to perform swath computations based on the maximum cone that encompasses the sensor pattern instead of actual pattern. Setting this option may result in a more informative swath with a superior appearance. |
|
Determine the angle with respect to the swath line within which candidate points are considered for possible connection to it. |
|
Control the adaptive step size of swath computation and ensures that neighboring samples adequately capture the curvature of the swath line. |
|
Select the Analytical or Numerical Computaional Method for generating swaths. |
Import detail#
from ansys.stk.core.stkobjects import Swath
Property detail#
- property Swath.color: Color#
Get or set the color in which swath graphics are displayed in the 2D Graphics window.
- property Swath.line_style: LineStyle#
Get or set the style of the line defining the boundaries of the swath display in the 2D Graphics window. A member of the LineStyle enumeration.
- property Swath.line_width: LineWidth#
Get or set the width of the line defining the boundaries of the swath display in the 2D Graphics window. A member of the LineWidth enumeration.
- property Swath.minimum_step: float#
Get or set the minimum step size for the adaptive step size of swath computation.
- property Swath.maximum_step: float#
Get or set the maximum step size for the adaptive step size of swath computation.
- property Swath.use_maximum_cone: bool#
Whether to perform swath computations based on the maximum cone that encompasses the sensor pattern instead of actual pattern. Setting this option may result in a more informative swath with a superior appearance.
- property Swath.scattering_tolerance: float#
Determine the angle with respect to the swath line within which candidate points are considered for possible connection to it.
- property Swath.curvature_tolerance: float#
Control the adaptive step size of swath computation and ensures that neighboring samples adequately capture the curvature of the swath line.
- property Swath.computational_method: SwathComputationalMethod#
Select the Analytical or Numerical Computaional Method for generating swaths.
Method detail#
- Swath.add_time_interval(self, start_time: Any, stop_time: Any) None #
Add an interval to the list of valid swath intervals. Start/Stop Times use DateFormat Dimension.
- Swath.modify_time_interval(self, index: int, start: Any, stop: Any) None #
Modify an interval given an index. Start/Stop Times use DateFormat Dimension.
- Swath.get_time_interval_index(self, start: Any, stop: Any) int #
Retrieve an index given a start and stop time. Start/Stop Times use DateFormat Dimension.
- Swath.remove_time_interval(self, start: Any, stop: Any) None #
Remove the interval given the start and stop times. Start/Stop Times use DateFormat Dimension.