STK ObjectsSend comments on this topic.
SetPointingFixedAxesAzEl Method (IAgSnCommonTasks)
See Also
ReferenceAxes
The ReferenceAxes format is as follows: <ObjectClass>/<InstanceName> <AxesName> Axes
Example: CentralBody/Sun J2000 Axes
Azimuth
Elevation
AboutBoresight
Windows





Windows & Linux

Description

Sets the pointing method to FixedAxes with an AzEl orientation.

Syntax

[Visual Basic .NET]
Public Function SetPointingFixedAxesAzEl( _
    ByVal ReferenceAxes As String, _
    ByVal Azimuth As System.Object, _
    ByVal Elevation As System.Object, _
    ByVal AboutBoresight As AgEAzElAboutBoresight _
) As IAgSnPtFixedAxes
[C#]
public IAgSnPtFixedAxes SetPointingFixedAxesAzEl(
    string ReferenceAxes,
    System.Object Azimuth,
    System.Object Elevation,
    AgEAzElAboutBoresight AboutBoresight
);
[Managed C++]
public: IAgSnPtFixedAxes^ SetPointingFixedAxesAzEl(
    String __gc ^ ReferenceAxes,
    VARIANT Azimuth,
    VARIANT Elevation,
    AgEAzElAboutBoresight AboutBoresight
);
[Unmanaged C++]
public: HRESULT SetPointingFixedAxesAzEl(
    BSTR ReferenceAxes,
    VARIANT Azimuth,
    VARIANT Elevation,
    AgEAzElAboutBoresight AboutBoresight,
    IAgSnPtFixedAxes ** ppIAgSnPtFixedAxes
);
[Java]
public IAgSnPtFixedAxes setPointingFixedAxesAzEl(
    String ReferenceAxes,
    AgVariant Azimuth,
    AgVariant Elevation,
    AgEAzElAboutBoresight AboutBoresight
);
[Python - STK API ]
def SetPointingFixedAxesAzEl(self, ReferenceAxes:str, Azimuth:typing.Any, Elevation:typing.Any, AboutBoresight:"AgEAzElAboutBoresight") -> "IAgSnPtFixedAxes":

Parameters

ReferenceAxes
The ReferenceAxes format is as follows: <ObjectClass>/<InstanceName> <AxesName> Axes
Example: CentralBody/Sun J2000 Axes
Azimuth
Elevation
AboutBoresight

See Also

Example

Define sensor pointing fixed axes AzEl
[C#]
IAgSnPtFixedAxes fixedAxesSensor = sensor.CommonTasks.SetPointingFixedAxesAzEl("CentralBody/Sun J2000 Axes", 11, 22, AgEAzElAboutBoresight.eAzElAboutBoresightHold);
Define sensor pointing fixed axes AzEl
[Visual Basic .NET]
Dim fixedAxesSensor As IAgSnPtFixedAxes = sensor.CommonTasks.SetPointingFixedAxesAzEl("CentralBody/Sun J2000 Axes", 11, 22, AgEAzElAboutBoresight.eAzElAboutBoresightHold)
Define sensor pointing fixed axes AzEl
[Python - STK API]
# IAgSensor sensor: Sensor object
# Change pointing and set
sensor.CommonTasks.SetPointingFixedAxesAzEl('CentralBody/Sun J2000 Axes', 11, 22, AgEAzElAboutBoresight.eAzElAboutBoresightHold)

Define sensor pointing fixed axes AzEl
[MATLAB]
% IAgSensor sensor: Sensor object
% Change pointing and set
sensor.CommonTasks.SetPointingFixedAxesAzEl('CentralBody/Sun J2000 Axes', 11, 22, 'eAzElAboutBoresightHold')


        
© 2024 Analytical Graphics, Inc. All Rights Reserved.