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
|
| [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
);
|
[Python - STK API ] |
|---|
@property
def WNSigma(self) -> "IAgPropQty":
@WNSigma.setter
def WNSigma(self, pVal:"IAgPropQty") -> None:
|
See Also