initial
This commit is contained in:
16
vnproglib/c/include/vn/conv.h
Normal file
16
vnproglib/c/include/vn/conv.h
Normal file
@ -0,0 +1,16 @@
|
||||
#ifndef __VNCONV_H__
|
||||
#define __VNCONV_H__
|
||||
|
||||
#include "vn/math/vector.h"
|
||||
|
||||
/** Converts ECEF coordinate to LLA frame.
|
||||
* \param[in] ecef Coordinate in ECEF frame.
|
||||
* \return Coordinate converted to LLA frame. */
|
||||
vec3d ecef_to_lla_v3d(vec3d ecef);
|
||||
|
||||
/** Converts LLA coordinate to ECEF frame.
|
||||
* \param[in] lla Coordinate in LLA frame in (deg, deg, meter) units.
|
||||
* \return Coordinate converted to ECEF frame in (km, km, km) units. */
|
||||
vec3d lla_to_ecef_v3d(vec3d lla);
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user