AGI STK Graphics 11 Send comments on this topic.
TryCartographicToWindow Method (IAgStkGraphicsCamera)
See Also  Example
CentralBody
The Central Body of the position.
Position
An array containing the Cartographic position to convert, provided in the order latitude, longitude, altitude.





Description

Converts a Cartographic position to a pixel coordinate relative to the globe control. This method does not throw an exception.

Syntax

[Visual Basic .NET]
Public Function TryCartographicToWindow( _
   ByVal CentralBody As String, _
   ByRef Position As System.Array _
) As System.Array

[C#]
public System.Array TryCartographicToWindow(
string CentralBody,
ref System.Array Position
);

[Managed C++]
public: System::Array TryCartographicToWindow(
String __gc ^ CentralBody,
System::Array ^^ Position
);

[Java]
public Object[] tryCartographicToWindow(
String CentralBody,
Object[] Position
);

[Unmanaged C++]
public: HRESULT TryCartographicToWindow(
BSTR CentralBody,
SAFEARRAY ** Position,
SAFEARRAY ** Array
);

Parameters

CentralBody
The Central Body of the position.
Position
An array containing the Cartographic position to convert, provided in the order latitude, longitude, altitude.

Example

Shows the format of the Position parameter when converting a cartogaphic position to a pixel coordinate.
[C#] Copy Code
Array position = new object[] 

    0.627
    -1.644
    0 
}; 
 
Array windowPos = scene.Camera.CartographicToWindow( 
    "Earth"
    ref position); 
 

Shows the format of the Position parameter when converting a cartogaphic position to a pixel coordinate.
[Visual Basic .NET] Copy Code
Dim position As Array = New Object() {0.627, -1.644, 0}

Dim windowPos As Array = scene.Camera.CartographicToWindow("Earth", position)

See Also

© 2016 All Rights Reserved.

STK Programming Interface 11.0.1