Description
IAgSnSARPattern Interface for the Synthetic Aperture Radar (SAR) sensor type, designed to model the field of regard of a SAR sensor with respect to the surface of the Earth.
Public Methods
Public Properties
AftExclusionAngle | The minimum angle between the aft projection of the velocity vector and the vector to the target. Uses Angle Dimension. |
AngularResolution | Allows a user to set the angular separation between the pattern data points. This is an advanced user field, available only through STK's object model interface. The default value for the number of pattern samples is 90 points over the Simple Conic (circular) pattern. The default setting is considered sufficient for interpolation and graphics purposes. However, advanced users have the option to increase/decrease the angular resolution of the sample points to conform to their analytical requirements. |
ForeExclusionAngle | The minimum angle between the forward projection of the velocity vector and the vector to the target. Uses Angle Dimension. |
MaxElevationAngle | Maximum ground elevation angle to which the SAR sensor can provide coverage. Uses Angle Dimension. |
MinElevationAngle | Minimum ground elevation angle to which the SAR sensor can provide coverage. Uses Angle Dimension. |
ParentAltitude | The altitude of the sensor's parent object (assumed to be constant). Uses Distance Dimension. |
TrackParentAltitude | Whether or not the SAR sensor tracks the altitude of the sensor's parent object. |
Interfaces
CoClasses that Implement IAgSnSARPattern
Example
Define a SAR sensor
[C#] |
---|
// Configure pattern
IAgSnSARPattern patterndata = sensor.CommonTasks.SetPatternSAR(10.0, 60.0, 40.0, 30.0, 700.0);
|
|
Define a SAR sensor
[Visual Basic .NET] |
---|
' Configure pattern
Dim patterndata As IAgSnSARPattern = sensor.CommonTasks.SetPatternSAR(10, 60, 40, 30, 700)
|
|