This commit is contained in:
2025-07-02 07:45:34 +03:00
parent a4135d45d8
commit 1fee25a38c
121 changed files with 16425 additions and 0 deletions

42
geo.h Normal file
View File

@@ -0,0 +1,42 @@
#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