Description
Computes, using the supplied latitude and longitude, the central body detic surface normal vector as an array of length 3 where the x component is array(0), y component is array(1), and z component is array(2). All values in meters.
Syntax
[Visual Basic .NET] |
---|
Public Function ComputeSurfaceNormalDeticArray( _
ByVal latitude As Double, _
ByVal longitude As Double _
) As System.Array
|
[C#] |
---|
public System.Array ComputeSurfaceNormalDeticArray(
double latitude,
double longitude
);
|
[Managed C++] |
---|
public: System::Array ComputeSurfaceNormalDeticArray(
double latitude,
double longitude
);
|
[Unmanaged C++] |
---|
public: HRESULT ComputeSurfaceNormalDeticArray(
double latitude,
double longitude,
SAFEARRAY * * ppArray
);
|
[Java] |
---|
public AgSafeArray computeSurfaceNormalDeticArray(
double latitude,
double longitude
);
|
Parameters
See Also