mirror of
https://github.com/paparazzi/paparazzi.git
synced 2026-06-06 16:42:47 +08:00
22 lines
242 B
C
22 lines
242 B
C
#ifndef PPRZ_ALGEBRA_F_H
|
|
#define PPRZ_ALGEBRA_F_H
|
|
|
|
|
|
|
|
struct Pprz_double_utm {
|
|
double east;
|
|
double north;
|
|
double alt;
|
|
int zone;
|
|
};
|
|
|
|
struct Pprz_double_lla {
|
|
double lat;
|
|
double lon;
|
|
double alt;
|
|
};
|
|
|
|
|
|
|
|
#endif /* PPRZ_ALGEBRA_F_H */
|