IAgODProvideTrackingDataLib 13Send comments on this topic.
WNSigma Property (IAgODGenericObs)
See Also
Windows





Windows & Linux

Description

White noise sigma. Used to override the values specified on the tracker. Some data formats support specifying the white noise sigma for each measurement. If not set, the default values from the tracker will be used.

The WNSigma method defines both the numeric value of the white noise sigma and the input unit. Thus, WNSigma has a "Unit" member which must be set to an ODTK-recognized unit string.

For example, if pObs is created to hold a Range measurement, thne to input a WNSigma in units of meters, the VBS commands would be:

pObs.MeasureType = 1 ' Range
pObs.WNSigma.Unit = "m"
pObs.WNSigma = 2.0

Property type

Read-write property

Syntax

[Visual Basic .NET]
Public Property WNSigma() As IAgPropQty
[C#]
public IAgPropQty WNSigma {get; set;}
[Managed C++]
public: __property IAgPropQty ^ get_WNSigma();
public: __property void set_WNSigma( IAgPropQty );
[Unmanaged C++]
public: HRESULT get_WNSigma(
    IAgPropQty ** ppVal
);
public: HRESULT put_WNSigma(
    IAgPropQty pVal
);
[Java]
public IAgPropQty getWNSigma();
public void setWNSigma(
    IAgPropQty
);
[Python - STK API ]
@property
def WNSigma(self) -> "IAgPropQty":

@WNSigma.setter
def WNSigma(self, pVal:"IAgPropQty") -> None:

See Also

© 2026 Analytical Graphics, Inc. All Rights Reserved.