31static constexpr float PI = 3.14159265f;
32static constexpr float DEGREES_TO_RADIANS = PI / 180.0f;
33static constexpr float RADIANS_TO_DEGREES = 180.0f / PI;
34static constexpr float PSI_TO_PASCAL = 6894.76f;
36static constexpr float g = 9.80665f;
38static constexpr float TROPOSPHERE_HEIGHT = 11000.f;
39static constexpr float a = 0.0065f;
40static constexpr float R = 287.05f;
41static constexpr float n = g / (R * a);
42static constexpr float nInv = (R * a) / g;
44static constexpr float CO = 340.3;
45static constexpr float ALPHA = -3.871e-3;
46static constexpr float RHO_0 = 1.225;
47static constexpr float GAMMA_AIR = 1.4f;
48static constexpr float Hn = 10400.0;
50static constexpr float MSL_PRESSURE = 101325.0f;
51static constexpr float MSL_TEMPERATURE = 288.15f;
53static constexpr float gpsLatConst =
55static constexpr float gpsLonConst =
58static constexpr float B21_LATITUDE = 45.501141;
59static constexpr float B21_LONGITUDE = 9.156281;