MTOAnalysisVisibility#
- class ansys.stk.core.stkobjects.MTOAnalysisVisibility#
MTO Visibility Computation.
Overview#
Return true if any track is visible to the object. |
|
Return true if all tracks are visible to the object. |
|
Return true is the track is visible to the object. |
|
Return true if any track in the array is visible to the object. |
|
Return an array of track ids with a bool value indicating if itβs visible to the specified object. |
|
Return an array of track ids with a bool value indicating if itβs visible to the specified object. |
Indicate whether to use terrain instead of line of sight. Default is Terrain Off. |
|
Visibility Entirety. |
|
Use Extended to use the last point of the ephemeris span of the object for times past the last point. Default is Normal. |
|
If the Object to which range will be computed is an MTO, use this option to specify the track that will be used to compute that range. By default the MTOβs ComputeTrack will be used. |
|
Get or set the object used for the visibility computation. |
Import detail#
from ansys.stk.core.stkobjects import MTOAnalysisVisibility
Property detail#
- property MTOAnalysisVisibility.use_terrain: bool#
Indicate whether to use terrain instead of line of sight. Default is Terrain Off.
- property MTOAnalysisVisibility.entirety: MTOEntirety#
Visibility Entirety.
- property MTOAnalysisVisibility.object_interval: MTOObjectInterval#
Use Extended to use the last point of the ephemeris span of the object for times past the last point. Default is Normal.
Method detail#
- MTOAnalysisVisibility.show_any_track(self, time: Any) bool #
Return true if any track is visible to the object.
- MTOAnalysisVisibility.are_all_tracks_visible(self, time: Any) bool #
Return true if all tracks are visible to the object.
- MTOAnalysisVisibility.show_track(self, track_id: int, time: Any) bool #
Return true is the track is visible to the object.
- MTOAnalysisVisibility.are_tracks_visible(self, eval: MTOTrackEvaluationType, track_ids: list, time: Any) bool #
Return true if any track in the array is visible to the object.
- MTOAnalysisVisibility.compute_tracks(self, mode: MTOVisibilityMode, track_ids: list, time: Any) list #
Return an array of track ids with a bool value indicating if itβs visible to the specified object.