QGCGeo.h 1.96 KB
Newer Older
1 2 3 4 5 6 7 8
/****************************************************************************
 *
 *   (c) 2009-2016 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
 *
 * QGroundControl is licensed according to the terms in the file
 * COPYING.md in the root of the source code directory.
 *
 ****************************************************************************/
9 10 11 12 13 14 15 16 17


/// @file
///     @brief Coordinate transformation math functions.
///     @link https://github.com/PX4/Firmware/blob/master/src/lib/geo/geo.c
///     @link http://psas.pdx.edu/CoordinateSystem/Latitude_to_LocalTangent.pdf
///     @link http://dspace.dsto.defence.gov.au/dspace/bitstream/1947/3538/1/DSTO-TN-0432.pdf
///     @author David Goodman <dagoodma@gmail.com>

LM's avatar
LM committed
18 19 20
#ifndef QGCGEO_H
#define QGCGEO_H

21
#include <QGeoCoordinate>
22 23 24 25 26 27

/* Safeguard for systems lacking sincos (e.g. Mac OS X Leopard) */
#ifndef sincos
#define sincos(th,x,y) { (*(x))=sin(th); (*(y))=cos(th); }
#endif

LM's avatar
LM committed
28
/**
29 30
 * @brief Project a geodetic coordinate on to local tangential plane (LTP) as coordinate with East,
 * North, and Down components in meters.
31 32 33 34
 * @param[in] coord Geodetic coordinate to project onto LTP.
 * @param[in] origin Geoedetic origin for LTP projection.
 * @param[out] x North component of coordinate in local plane.
 * @param[out] y East component of coordinate in local plane.
35
 * @param[out] z Down component of coordinate in local plane.
LM's avatar
LM committed
36
 */
37
void convertGeoToNed(QGeoCoordinate coord, QGeoCoordinate origin, double* x, double* y, double* z);
LM's avatar
LM committed
38

39
/**
40
 * @brief Transform a local (East, North, and Down) coordinate into a geodetic coordinate.
41 42
 * @param[in] x North component of local coordinate in meters.
 * @param[in] x East component of local coordinate in meters.
43
 * @param[in] x Down component of local coordinate in meters.
44 45 46
 * @param[in] origin Geoedetic origin for LTP.
 * @param[out] coord Geodetic coordinate to hold result.
 */
47
void convertNedToGeo(double x, double y, double z, QGeoCoordinate origin, QGeoCoordinate *coord);
LM's avatar
LM committed
48 49

#endif // QGCGEO_H