ned_to_ecef

ned_to_ecef

sorts.frames.ned_to_ecef(lat, lon, alt, ned, radians=False)[source]

NED (north/east/down) to ECEF coordinate system conversion, not including translation.

Parameters
  • lat (float) – Latitude on the ellipsoid

  • lon (float) – Longitude on the ellipsoid

  • alt (float) – Altitude above ellipsoid, Unused in this implementation.

  • ned (numpy.ndarray) – (3,n) input matrix of positions in the NED-convention.

  • radians (bool) – If True then all values are given in radians instead of degrees.

Return type

numpy.ndarray

Returns

(3,n) array x,y and z coordinates in ECEF.