fromDegreesArrayHeights

fun fromDegreesArrayHeights(coordinates: ReadonlyArray<Double>, ellipsoid: Ellipsoid? = definedExternally, result: ReadonlyArray<Cartesian3>? = definedExternally): ReadonlyArray<Cartesian3>(source)

Returns an array of Cartesian3 positions given an array of longitude, latitude and height values where longitude and latitude are given in degrees.

const positions = Cartesian3.fromDegreesArrayHeights([-115.0, 37.0, 100000.0, -107.0, 33.0, 150000.0]);

Return

The array of positions.

Parameters

coordinates

A list of longitude, latitude and height values. Values alternate longitude, latitude, height, longitude, latitude, height....

ellipsoid

The ellipsoid on which the position lies. Default value - Ellipsoid.default

result

An array of Cartesian3 objects to store the result.

See also