Description
A flag that tells the measurement model whether to include an ionospheric correction.
The default is 'true'.
If the measurements in the file have already had ionospheric corrections removed, then this flag should be set to false. Note that if this flag is set to true, the user can override it via the interface for the TrackingSystem object.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property ModelIon() As Boolean
|
[C#] |
---|
public bool ModelIon {get; set;}
|
[Managed C++] |
---|
public: __property bool get_ModelIon(); public: __property void set_ModelIon(
bool
);
|
[Unmanaged C++] |
---|
public: HRESULT get_ModelIon(
VARIANT_BOOL * pVal
);
public: HRESULT put_ModelIon(
VARIANT_BOOL newVal
);
|
[Java] |
---|
public bool getModelIon();
public void setModelIon(
bool
);
|
[Python - STK API ] |
---|
@property
def ModelIon(self) -> bool:
@ModelIon.setter
def ModelIon(self, newVal:bool) -> None:
|
See Also