STK ObjectsSend comments on this topic.
IAgSnCustomPattern Interface

Description

IAgSnCustomPattern Interface for custom sensor patterns.

Public Properties

Public Property AngularResolutionThis is an advanced user field, available only through STK's object model interface. The Angular Resolution field allows a user to set the angular separation between the pattern data points. 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.
Public Property FilenamePath and file name of the custom sensor pattern file.
Public Property UseNativeResolutionControls pattern subsampling

Interfaces

Implemented Interface
IAgSnPattern

CoClasses that Implement IAgSnCustomPattern

Example

Define a custom sensor
[C#]
// Set pattern type to Custom
IAgSnCustomPattern customPattern = sensor.CommonTasks.SetPatternCustom(sensorPatternPath);
customPattern.AngularResolution = 6.0;
customPattern.UseNativeResolution = false;
Define a custom sensor
[Visual Basic .NET]
' Set pattern type to Custom
Dim customPattern As IAgSnCustomPattern = sensor.CommonTasks.SetPatternCustom(sensorPatternPath)
customPattern.AngularResolution = 6
customPattern.UseNativeResolution = False
© 2024 Analytical Graphics, Inc. All Rights Reserved.