STK ObjectsSend comments on this topic.
IAgSnCustomPattern Interface

Description

IAgSnCustomPattern Interface for custom sensor patterns.

Public Properties

Public Property AngularResolutionAngular separation between points in a pattern
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
© 2023 Analytical Graphics, Inc. All Rights Reserved.