Description
A flag that tells the measurement model whether to include a tropospheric correction.
The default is 'true'.
If the measurements in the file have already had tropospheric 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 ModelTrop() As Boolean
|
[C#] |
---|
public bool ModelTrop {get; set;}
|
[Managed C++] |
---|
public: __property bool get_ModelTrop(); public: __property void set_ModelTrop(
bool
);
|
[Unmanaged C++] |
---|
public: HRESULT get_ModelTrop(
VARIANT_BOOL * pVal
);
public: HRESULT put_ModelTrop(
VARIANT_BOOL newVal
);
|
[Java] |
---|
public bool getModelTrop();
public void setModelTrop(
bool
);
|
[Python - STK API ] |
---|
@property
def ModelTrop(self) -> bool:
@ModelTrop.setter
def ModelTrop(self, newVal:bool) -> None:
|
See Also