Click or drag to resize

ChartToolsCalculateSphericalRoute Method

LightningChart .NET Help
Calculate a spherical route (going shortest way, in sphere surface). This is also known as Great Circle route.

Namespace:  Arction.Wpf.Charting
Assembly:  Arction.Wpf.Charting.LightningChart (in Arction.Wpf.Charting.LightningChart.dll) Version: 10.3.1
Syntax
public static MapCoordinate[] CalculateSphericalRoute(
	MapCoordinate beginPoint,
	MapCoordinate endPoint,
	double sphereRadius,
	double angleStep
)

Parameters

beginPoint
Type: Arction.Wpf.ChartingMapCoordinate
Route begin coordinate.
endPoint
Type: Arction.Wpf.ChartingMapCoordinate
Route end coordinate.
sphereRadius
Type: SystemDouble
Sphere radius.
angleStep
Type: SystemDouble
Angle step.

Return Value

Type: MapCoordinate
Route waypoints.
See Also