43 lines
422 B
C
43 lines
422 B
C
#ifndef GEO_H
|
|
#define GEO_H
|
|
|
|
#include <cmath>
|
|
|
|
struct T_geoPoint
|
|
{
|
|
int nZone;
|
|
bool south;
|
|
int x;
|
|
int y;
|
|
int h;
|
|
};
|
|
|
|
struct T_metAv
|
|
{
|
|
int temp;
|
|
int wind;
|
|
int azim;
|
|
int pressure;
|
|
};
|
|
|
|
struct T_sectOtv
|
|
{
|
|
qreal left;
|
|
qreal right;
|
|
qreal height;
|
|
qreal bottom;
|
|
};
|
|
|
|
//struct T_ugolDU
|
|
//{
|
|
// int DU;
|
|
// int mDU;
|
|
//};
|
|
|
|
//T_ugolDU deg_v_DU(qreal deg)
|
|
//{
|
|
|
|
//}
|
|
|
|
#endif // GEO_H
|