STK ObjectsSend comments on this topic.
IAgSnProjection Interface

Description

IAgSnProjection Interface for setting and retrieving 2D Graphics Projection properties for a sensor.

Public Methods

Public Method AvailableAltitudeObjectsReturns the available altitude objects.
Public Method AvailableConstraintsReturns the available constraints.
Public Method DisableConstraintDisables the constraint with the name given.
Public Method EnableConstraintEnables the constraint with the name given.
Public Method EnabledConstraintsReturns the enabled constraints.

Public Properties

Public Property DisplayTimesHidesPersistanceSpecify whether to allow display times to affect the sensor's persistence on/off state.
Public Property DistanceDataValue of the criterion used for determining the projection distance.
Public Property DistanceTypeThe criterion used for determining the projection distance. A member of the AgESnProjectionDistanceType enumeration.
Public Property FillPersistenceSpecify whether to display the sensor's footprints as filled areas on the surface of the central body.
Public Property ForwardPersistenceSpecify whether persistence is to apply in a forward animation direction only.
Public Property IntersectionTypeThe type of intersections to be shown. A member of the AgEIntersectionType enumeration.
Public Property PersistencePersistence time, the length of time the sensor's footprint remains visible during animation. Used to display sensor footprints for a specified period of time so that you can determine quickly and easily whether coverage requirements are being met. Uses Time Dimension
Public Property ProjectAtAltObjectThe altitude of the object to which the sensor is projected (if this option for setting projection distance is selected).
Public Property ShowOn2DMapShow Projection on 2D map
Public Property UseConstraintsSpecify whether to evaluate the effect of various constraints on visibility along all possible lines of sight within the field of view.
Public Property UseDistanceOpt whether the sensor's field-of-view crossings at specified distances are to be computed and displayed in the 2D Graphics window.

Example

Sensor Persistence
[Python - STK API]
# IAgSensor sensor: Sensor object
projection = sensor.Graphics.Projection
projection.Persistence = 7200  # sec
projection.ForwardPersistence = True
projection.FillPersistence = True
sensor.Graphics.FillVisible = True
sensor.Graphics.PercentTranslucency = 50

Sensor Persistence
[MATLAB]
% IAgSensor sensor: Sensor object
projection = sensor.Graphics.Projection;
projection.Persistence = 7200;  % sec
projection.ForwardPersistence = true;
projection.FillPersistence = true;
sensor.Graphics.FillVisible = true;
sensor.Graphics.PercentTranslucency = 50;


        
© 2024 Analytical Graphics, Inc. All Rights Reserved.