Paparazzi UAS  v5.8.2_stable-0-g6260b7c
Paparazzi is a free software Unmanned Aircraft System.
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
pprz_geodetic_int.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2008-2014 The Paparazzi Team
3  *
4  * This file is part of paparazzi.
5  *
6  * paparazzi is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2, or (at your option)
9  * any later version.
10  *
11  * paparazzi is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with paparazzi; see the file COPYING. If not, see
18  * <http://www.gnu.org/licenses/>.
19  */
20 
31 #ifndef PPRZ_GEODETIC_INT_H
32 #define PPRZ_GEODETIC_INT_H
33 
34 #ifdef __cplusplus
35 extern "C" {
36 #endif
37 
38 #include "pprz_geodetic.h"
39 
40 #include "std.h"
41 #include "pprz_algebra_int.h"
42 
43 
50 struct EcefCoor_i {
54 };
55 
59 struct LlaCoor_i {
63 };
64 
68 struct NedCoor_i {
72 };
73 
77 struct EnuCoor_i {
81 };
82 
86 struct UtmCoor_i {
91 };
92 
98 struct LtpDef_i {
99  struct EcefCoor_i ecef;
100  struct LlaCoor_i lla;
103 };
104 
105 extern void ltp_of_ecef_rmat_from_lla_i(struct Int32RMat *ltp_of_ecef, struct LlaCoor_i *lla);
106 extern void ltp_def_from_ecef_i(struct LtpDef_i *def, struct EcefCoor_i *ecef);
107 extern void ltp_def_from_lla_i(struct LtpDef_i *def, struct LlaCoor_i *lla);
108 extern void lla_of_ecef_i(struct LlaCoor_i *out, struct EcefCoor_i *in);
109 extern void ecef_of_lla_i(struct EcefCoor_i *out, struct LlaCoor_i *in);
110 extern void enu_of_ecef_point_i(struct EnuCoor_i *enu, struct LtpDef_i *def, struct EcefCoor_i *ecef);
111 extern void ned_of_ecef_point_i(struct NedCoor_i *ned, struct LtpDef_i *def, struct EcefCoor_i *ecef);
112 extern void enu_of_ecef_pos_i(struct EnuCoor_i *enu, struct LtpDef_i *def, struct EcefCoor_i *ecef);
113 extern void ned_of_ecef_pos_i(struct NedCoor_i *ned, struct LtpDef_i *def, struct EcefCoor_i *ecef);
114 extern void enu_of_ecef_vect_i(struct EnuCoor_i *enu, struct LtpDef_i *def, struct EcefCoor_i *ecef);
115 extern void ned_of_ecef_vect_i(struct NedCoor_i *ned, struct LtpDef_i *def, struct EcefCoor_i *ecef);
116 extern void enu_of_lla_point_i(struct EnuCoor_i *enu, struct LtpDef_i *def, struct LlaCoor_i *lla);
117 extern void ned_of_lla_point_i(struct NedCoor_i *ned, struct LtpDef_i *def, struct LlaCoor_i *lla);
118 extern void enu_of_lla_vect_i(struct EnuCoor_i *enu, struct LtpDef_i *def, struct LlaCoor_i *lla);
119 extern void ned_of_lla_vect_i(struct NedCoor_i *ned, struct LtpDef_i *def, struct LlaCoor_i *lla);
120 extern void ecef_of_enu_point_i(struct EcefCoor_i *ecef, struct LtpDef_i *def, struct EnuCoor_i *enu);
121 extern void ecef_of_ned_point_i(struct EcefCoor_i *ecef, struct LtpDef_i *def, struct NedCoor_i *ned);
122 extern void ecef_of_enu_pos_i(struct EcefCoor_i *ecef, struct LtpDef_i *def, struct EnuCoor_i *enu);
123 extern void ecef_of_ned_pos_i(struct EcefCoor_i *ecef, struct LtpDef_i *def, struct NedCoor_i *ned);
124 extern void ecef_of_enu_vect_i(struct EcefCoor_i *ecef, struct LtpDef_i *def, struct EnuCoor_i *enu);
125 extern void ecef_of_ned_vect_i(struct EcefCoor_i *ecef, struct LtpDef_i *def, struct NedCoor_i *ned);
126 
127 #define CM_OF_M(_m) ((_m)*1e2)
128 #define M_OF_CM(_cm) ((_cm)/1e2)
129 #define MM_OF_M(_m) ((_m)*1e3)
130 #define M_OF_MM(_mm) ((_mm)/1e3)
131 #define EM7RAD_OF_RAD(_r) ((_r)*1e7)
132 #define RAD_OF_EM7RAD(_r) ((_r)/1e7)
133 #define EM7DEG_OF_DEG(_r) ((_r)*1e7)
134 #define DEG_OF_EM7DEG(_r) ((_r)/1e7)
135 #define EM7DEG_OF_RAD(_r) (DegOfRad(_r)*1e7)
136 #define RAD_OF_EM7DEG(_r) (RadOfDeg(_r)/1e7)
137 
138 #define HIGH_RES_TRIG_FRAC 20
139 
140 #define VECT3_ENU_OF_NED(_o, _i) { \
141  (_o).x = (_i).y; \
142  (_o).y = (_i).x; \
143  (_o).z = -(_i).z; \
144  }
145 
146 #define VECT3_NED_OF_ENU(_o, _i) VECT3_ENU_OF_NED(_o,_i)
147 #define INT32_VECT3_NED_OF_ENU(_o, _i) VECT3_ENU_OF_NED(_o,_i)
148 #define INT32_VECT3_ENU_OF_NED(_o, _i) VECT3_ENU_OF_NED(_o,_i)
149 
150 #define ECEF_BFP_OF_REAL(_o, _i) { \
151  (_o).x = (int32_t)CM_OF_M((_i).x); \
152  (_o).y = (int32_t)CM_OF_M((_i).y); \
153  (_o).z = (int32_t)CM_OF_M((_i).z); \
154  }
155 
156 #define ECEF_FLOAT_OF_BFP(_o, _i) { \
157  (_o).x = (float)M_OF_CM((_i).x); \
158  (_o).y = (float)M_OF_CM((_i).y); \
159  (_o).z = (float)M_OF_CM((_i).z); \
160  }
161 
162 #define ECEF_DOUBLE_OF_BFP(_o, _i) { \
163  (_o).x = (double)M_OF_CM((_i).x); \
164  (_o).y = (double)M_OF_CM((_i).y); \
165  (_o).z = (double)M_OF_CM((_i).z); \
166  }
167 #define LLA_BFP_OF_REAL(_o, _i) { \
168  (_o).lat = (int32_t)EM7DEG_OF_RAD((_i).lat); \
169  (_o).lon = (int32_t)EM7DEG_OF_RAD((_i).lon); \
170  (_o).alt = (int32_t)MM_OF_M((_i).alt); \
171  }
172 
173 #define LLA_FLOAT_OF_BFP(_o, _i) { \
174  (_o).lat = RAD_OF_EM7DEG((float)(_i).lat); \
175  (_o).lon = RAD_OF_EM7DEG((float)(_i).lon); \
176  (_o).alt = M_OF_MM((float)(_i).alt); \
177  }
178 
179 #define LLA_DOUBLE_OF_BFP(_o, _i) { \
180  (_o).lat = RAD_OF_EM7DEG((double)(_i).lat); \
181  (_o).lon = RAD_OF_EM7DEG((double)(_i).lon); \
182  (_o).alt = M_OF_MM((double)(_i).alt); \
183  }
184 #define NED_BFP_OF_REAL(_o, _i) { \
185  (_o).x = POS_BFP_OF_REAL((_i).x); \
186  (_o).y = POS_BFP_OF_REAL((_i).y); \
187  (_o).z = POS_BFP_OF_REAL((_i).z); \
188  }
189 
190 #define ENU_BFP_OF_REAL(_o, _i) NED_BFP_OF_REAL(_o, _i)
191 
192 #define NED_FLOAT_OF_BFP(_o, _i) { \
193  (_o).x = POS_FLOAT_OF_BFP((_i).x); \
194  (_o).y = POS_FLOAT_OF_BFP((_i).y); \
195  (_o).z = POS_FLOAT_OF_BFP((_i).z); \
196  }
197 
198 #define ENU_FLOAT_OF_BFP(_o, _i) NED_FLOAT_OF_BFP(_o, _i)
199 
200 #define INT32_VECT2_ENU_OF_NED(_o, _i) { \
201  (_o).x = (_i).y; \
202  (_o).y = (_i).x; \
203  }
204 
205 #define INT32_VECT2_NED_OF_ENU(_o, _i) INT32_VECT2_ENU_OF_NED(_o,_i)
206 
207 #define HIGH_RES_RMAT_BFP_OF_REAL(_ei, _ef) { \
208  (_ei).m[0] = BFP_OF_REAL((_ef).m[0], HIGH_RES_TRIG_FRAC); \
209  (_ei).m[1] = BFP_OF_REAL((_ef).m[1], HIGH_RES_TRIG_FRAC); \
210  (_ei).m[2] = BFP_OF_REAL((_ef).m[2], HIGH_RES_TRIG_FRAC); \
211  (_ei).m[3] = BFP_OF_REAL((_ef).m[3], HIGH_RES_TRIG_FRAC); \
212  (_ei).m[4] = BFP_OF_REAL((_ef).m[4], HIGH_RES_TRIG_FRAC); \
213  (_ei).m[5] = BFP_OF_REAL((_ef).m[5], HIGH_RES_TRIG_FRAC); \
214  (_ei).m[6] = BFP_OF_REAL((_ef).m[6], HIGH_RES_TRIG_FRAC); \
215  (_ei).m[7] = BFP_OF_REAL((_ef).m[7], HIGH_RES_TRIG_FRAC); \
216  (_ei).m[8] = BFP_OF_REAL((_ef).m[8], HIGH_RES_TRIG_FRAC); \
217  }
218 
219 #define HIGH_RES_RMAT_FLOAT_OF_BFP(_ef, _ei) { \
220  (_ef).m[0] = FLOAT_OF_BFP((_ei).m[0], HIGH_RES_TRIG_FRAC); \
221  (_ef).m[1] = FLOAT_OF_BFP((_ei).m[1], HIGH_RES_TRIG_FRAC); \
222  (_ef).m[2] = FLOAT_OF_BFP((_ei).m[2], HIGH_RES_TRIG_FRAC); \
223  (_ef).m[3] = FLOAT_OF_BFP((_ei).m[3], HIGH_RES_TRIG_FRAC); \
224  (_ef).m[4] = FLOAT_OF_BFP((_ei).m[4], HIGH_RES_TRIG_FRAC); \
225  (_ef).m[5] = FLOAT_OF_BFP((_ei).m[5], HIGH_RES_TRIG_FRAC); \
226  (_ef).m[6] = FLOAT_OF_BFP((_ei).m[6], HIGH_RES_TRIG_FRAC); \
227  (_ef).m[7] = FLOAT_OF_BFP((_ei).m[7], HIGH_RES_TRIG_FRAC); \
228  (_ef).m[8] = FLOAT_OF_BFP((_ei).m[8], HIGH_RES_TRIG_FRAC); \
229  }
230 
231 #define HIGH_RES_RMAT_DOUBLE_OF_BFP(_ef, _ei) { \
232  (_ef).m[0] = DOUBLE_OF_BFP((_ei).m[0], HIGH_RES_TRIG_FRAC); \
233  (_ef).m[1] = DOUBLE_OF_BFP((_ei).m[1], HIGH_RES_TRIG_FRAC); \
234  (_ef).m[2] = DOUBLE_OF_BFP((_ei).m[2], HIGH_RES_TRIG_FRAC); \
235  (_ef).m[3] = DOUBLE_OF_BFP((_ei).m[3], HIGH_RES_TRIG_FRAC); \
236  (_ef).m[4] = DOUBLE_OF_BFP((_ei).m[4], HIGH_RES_TRIG_FRAC); \
237  (_ef).m[5] = DOUBLE_OF_BFP((_ei).m[5], HIGH_RES_TRIG_FRAC); \
238  (_ef).m[6] = DOUBLE_OF_BFP((_ei).m[6], HIGH_RES_TRIG_FRAC); \
239  (_ef).m[7] = DOUBLE_OF_BFP((_ei).m[7], HIGH_RES_TRIG_FRAC); \
240  (_ef).m[8] = DOUBLE_OF_BFP((_ei).m[8], HIGH_RES_TRIG_FRAC); \
241  }
242 
243 #ifdef __cplusplus
244 } /* extern "C" */
245 #endif
246 
247 #endif /* PPRZ_GEODETIC_INT_H */
248 
void ecef_of_enu_pos_i(struct EcefCoor_i *ecef, struct LtpDef_i *def, struct EnuCoor_i *enu)
Convert a local ENU position to ECEF.
int32_t z
in centimeters
int32_t north
in centimeters
void ecef_of_ned_point_i(struct EcefCoor_i *ecef, struct LtpDef_i *def, struct NedCoor_i *ned)
Convert a point in local NED to ECEF.
definition of the local (flat earth) coordinate system
int32_t y
North.
int32_t x
East.
void ecef_of_enu_point_i(struct EcefCoor_i *ecef, struct LtpDef_i *def, struct EnuCoor_i *enu)
Convert a point in local ENU to ECEF.
void enu_of_ecef_pos_i(struct EnuCoor_i *enu, struct LtpDef_i *def, struct EcefCoor_i *ecef)
Convert a ECEF position to local ENU.
vector in EarthCenteredEarthFixed coordinates
int32_t y
in centimeters
struct Int32RMat ltp_of_ecef
Rotation matrix.
int32_t east
in centimeters
vector in Latitude, Longitude and Altitude
void ltp_def_from_lla_i(struct LtpDef_i *def, struct LlaCoor_i *lla)
int32_t z
Down.
void ned_of_ecef_vect_i(struct NedCoor_i *ned, struct LtpDef_i *def, struct EcefCoor_i *ecef)
Rotate a vector from ECEF to NED.
struct EcefCoor_i ecef
Reference point in ecef.
int32_t hmsl
Height above mean sea level in mm.
int32_t alt
in millimeters above WGS84 reference ellipsoid
int32_t y
East.
uint8_t zone
UTM zone number.
void ned_of_ecef_pos_i(struct NedCoor_i *ned, struct LtpDef_i *def, struct EcefCoor_i *ecef)
Convert a ECEF position to local NED.
int32_t x
North.
void enu_of_ecef_point_i(struct EnuCoor_i *enu, struct LtpDef_i *def, struct EcefCoor_i *ecef)
Convert a point from ECEF to local ENU.
struct LlaCoor_i lla
Reference point in lla.
int32_t lon
in degrees*1e7
int32_t z
Up.
signed long int32_t
Definition: types.h:19
void ecef_of_ned_pos_i(struct EcefCoor_i *ecef, struct LtpDef_i *def, struct NedCoor_i *ned)
Convert a local NED position to ECEF.
int32_t alt
in millimeters above WGS84 reference ellipsoid
void ned_of_lla_point_i(struct NedCoor_i *ned, struct LtpDef_i *def, struct LlaCoor_i *lla)
Convert a point from LLA to local NED.
Paparazzi generic macros for geodetic calculations.
vector in East North Up coordinates
unsigned char uint8_t
Definition: types.h:14
void ned_of_ecef_point_i(struct NedCoor_i *ned, struct LtpDef_i *def, struct EcefCoor_i *ecef)
Convert a point from ECEF to local NED.
vector in North East Down coordinates
void enu_of_ecef_vect_i(struct EnuCoor_i *enu, struct LtpDef_i *def, struct EcefCoor_i *ecef)
Rotate a vector from ECEF to ENU.
int32_t x
in centimeters
rotation matrix
void ecef_of_lla_i(struct EcefCoor_i *out, struct LlaCoor_i *in)
void ltp_of_ecef_rmat_from_lla_i(struct Int32RMat *ltp_of_ecef, struct LlaCoor_i *lla)
void lla_of_ecef_i(struct LlaCoor_i *out, struct EcefCoor_i *in)
void enu_of_lla_point_i(struct EnuCoor_i *enu, struct LtpDef_i *def, struct LlaCoor_i *lla)
Convert a point from LLA to local ENU.
int32_t lat
in degrees*1e7
void ned_of_lla_vect_i(struct NedCoor_i *ned, struct LtpDef_i *def, struct LlaCoor_i *lla)
void enu_of_lla_vect_i(struct EnuCoor_i *enu, struct LtpDef_i *def, struct LlaCoor_i *lla)
void ecef_of_enu_vect_i(struct EcefCoor_i *ecef, struct LtpDef_i *def, struct EnuCoor_i *enu)
Rotate a vector from ENU to ECEF.
void ltp_def_from_ecef_i(struct LtpDef_i *def, struct EcefCoor_i *ecef)
Paparazzi fixed point algebra.
position in UTM coordinates
void ecef_of_ned_vect_i(struct EcefCoor_i *ecef, struct LtpDef_i *def, struct NedCoor_i *ned)
Rotate a vector from NED to ECEF.