STK ObjectsSend comments on this topic.
SetPointingFixedAzEl Method (IAgSnCommonTasks)
See Also
Azimuth
Elevation
AboutBoresight
Windows





Windows & Linux

Description

Sets the pointing method to Fixed with an AzEl orientation.

Syntax

[Visual Basic .NET]
Public Function SetPointingFixedAzEl( _
    ByVal Azimuth As System.Object, _
    ByVal Elevation As System.Object, _
    ByVal AboutBoresight As AgEAzElAboutBoresight _
) As IAgSnPtFixed
[C#]
public IAgSnPtFixed SetPointingFixedAzEl(
    System.Object Azimuth,
    System.Object Elevation,
    AgEAzElAboutBoresight AboutBoresight
);
[Managed C++]
public: IAgSnPtFixed^ SetPointingFixedAzEl(
    VARIANT Azimuth,
    VARIANT Elevation,
    AgEAzElAboutBoresight AboutBoresight
);
[Unmanaged C++]
public: HRESULT SetPointingFixedAzEl(
    VARIANT Azimuth,
    VARIANT Elevation,
    AgEAzElAboutBoresight AboutBoresight,
    IAgSnPtFixed ** ppIAgSnPtFixed
);
[Java]
public IAgSnPtFixed setPointingFixedAzEl(
    AgVariant Azimuth,
    AgVariant Elevation,
    AgEAzElAboutBoresight AboutBoresight
);
[Python - STK API ]
def SetPointingFixedAzEl(self, Azimuth:typing.Any, Elevation:typing.Any, AboutBoresight:"AgEAzElAboutBoresight") -> "IAgSnPtFixed":

Parameters

Azimuth
Elevation
AboutBoresight

See Also

Example

Define sensor pointing fixed AzEl
[C#]
IAgSnPtFixed fixedSensor = sensor.CommonTasks.SetPointingFixedAzEl(4.5, -45.0, AgEAzElAboutBoresight.eAzElAboutBoresightRotate);
Define sensor pointing fixed AzEl
[Visual Basic .NET]
Dim fixedSensor As IAgSnPtFixed = sensor.CommonTasks.SetPointingFixedAzEl(4.5, -45, AgEAzElAboutBoresight.eAzElAboutBoresightRotate)
Define sensor pointing fixed AzEl
[Python - STK API]
# IAgSensor sensor: Sensor object
# Change pointing and set
sensor.CommonTasks.SetPointingFixedAzEl(4.5, -45.0, AgEAzElAboutBoresight.eAzElAboutBoresightRotate)

Define sensor pointing fixed AzEl
[MATLAB]
% IAgSensor sensor: Sensor object
% Change pointing and set
sensor.CommonTasks.SetPointingFixedAzEl(4.5, -45.0, 'eAzElAboutBoresightRotate')


        
© 2024 Analytical Graphics, Inc. All Rights Reserved.