Description
This flag only applies to laser ranging measurements. It tells the measurement model whether to acount for the retro reflector phase center offset to the vehicle center of mass. The default is "true".
If the measurements in the file have already had center of mass corrections applied, then this flag should be set to false.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property ModelCM() As Boolean
|
[C#] |
---|
public bool ModelCM {get; set;}
|
[Managed C++] |
---|
public: __property bool get_ModelCM(); public: __property void set_ModelCM(
bool
);
|
[Unmanaged C++] |
---|
public: HRESULT get_ModelCM(
VARIANT_BOOL * pVal
);
public: HRESULT put_ModelCM(
VARIANT_BOOL newVal
);
|
[Java] |
---|
public bool getModelCM();
public void setModelCM(
bool
);
|
[Python - STK API ] |
---|
@property
def ModelCM(self) -> bool:
@ModelCM.setter
def ModelCM(self, newVal:bool) -> None:
|
See Also