Description
Compute geomagnetic field in Earth Fixed components, returned as the array (Bx, By, Bz), at the specified Earth location. Uses Date, Angle, Longitude, Distance, and MagneticField Dimensions.
Syntax
[Visual Basic .NET] |
---|
Public Function ComputeBFieldAsArray( _
ByVal Time As System.Object, _
ByVal Lat As Double, _
ByVal Lon As Double, _
ByVal Alt As Double _
) As System.Array
|
[C#] |
---|
public System.Array ComputeBFieldAsArray(
System.Object Time,
double Lat,
double Lon,
double Alt
);
|
[Managed C++] |
---|
public: System::Array ComputeBFieldAsArray(
VARIANT Time,
double Lat,
double Lon,
double Alt
);
|
[Unmanaged C++] |
---|
public: HRESULT ComputeBFieldAsArray(
VARIANT Time,
double Lat,
double Lon,
double Alt,
SAFEARRAY * * ppRetVal
);
|
[Java] |
---|
public AgSafeArray computeBFieldAsArray(
AgVariant Time,
double Lat,
double Lon,
double Alt
);
|
[Python - STK API ] |
---|
def ComputeBFieldAsArray(self, Time:typing.Any, Lat:float, Lon:float, Alt:float) -> list:
|
Parameters
See Also