STK ObjectsSend comments on this topic.
SetAzElMaskFile Method (IAgSensor)
See Also
Filename
The file name to set the azel data.
Windows





Windows & Linux

Description

Path and file name of az-el mask file.

Syntax

[Visual Basic .NET]
Public Sub SetAzElMaskFile( _
    ByVal Filename As String _
)
[C#]
public void SetAzElMaskFile(
    string Filename
);
[Managed C++]
public: void SetAzElMaskFile(
    String __gc ^ Filename
);
[Unmanaged C++]
public: HRESULT SetAzElMaskFile(
    BSTR Filename
);
[Java]
public void setAzElMaskFile(
    String Filename
);
[Python - STK API ]
def SetAzElMaskFile(self, Filename:str) -> None:

Parameters

Filename
The file name to set the azel data.

See Also

Example

Define sensor to use azimuth elevation mask file
[C#]
// Specify Mask file
sensor.SetAzElMaskFile(maskFilePath);

// Get Mask File interface
IAgSnAzElMaskFile maskFile = sensor.AzElMaskData as IAgSnAzElMaskFile;

// Configure MaskFile as needed
maskFile.BoresightAxis = AgESnAzElBsightAxisType.ePlus_MinusZ;
Define sensor to use azimuth elevation mask file
[Visual Basic .NET]
' Specify Mask file
sensor.SetAzElMaskFile(maskFilePath)

' Get Mask File interface
Dim maskFile As IAgSnAzElMaskFile = TryCast(sensor.AzElMaskData, IAgSnAzElMaskFile)

' Configure MaskFile as needed
maskFile.BoresightAxis = AgESnAzElBsightAxisType.ePlus_MinusZ
© 2024 Analytical Graphics, Inc. All Rights Reserved.