Enroute Flight Navigation
A navigation app for VFR pilots
Wind.h
1/***************************************************************************
2 * Copyright (C) 2019-2022 by Stefan Kebekus *
3 * stefan.kebekus@gmail.com *
4 * *
5 * This program is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation; either version 3 of the License, or *
8 * (at your option) any later version. *
9 * *
10 * This program is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
14 * *
15 * You should have received a copy of the GNU General Public License *
16 * along with this program; if not, write to the *
17 * Free Software Foundation, Inc., *
18 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
19 ***************************************************************************/
20
21#pragma once
22
23#include <QQmlEngine>
24
25#include "units/Angle.h"
26#include "units/Speed.h"
27
28namespace Weather {
29
31
32class Wind {
33 Q_GADGET
34 QML_VALUE_TYPE(wind)
35
36public:
37
38 //
39 // Properties
40 //
41
43 Q_PROPERTY(Units::Speed minWindSpeed MEMBER minWindSpeed CONSTANT)
44
45
46 Q_PROPERTY(Units::Speed maxWindSpeed MEMBER maxWindSpeed CONSTANT)
47
53 Q_PROPERTY(Units::Angle directionFrom READ directionFrom WRITE setDirectionFrom)
54
61 Q_PROPERTY(Units::Speed speed READ speed WRITE setSpeed)
62
63
64 //
65 // Getter Methods
66 //
67
72 [[nodiscard]] auto directionFrom() const -> Units::Angle { return m_directionFrom; }
73
78 [[nodiscard]] auto speed() const -> Units::Speed { return m_speed; }
79
80
81 //
82 // Setter Methods
83 //
84
93 void setSpeed(Units::Speed newSpeed);
94
99 void setDirectionFrom(Units::Angle newDirectionFrom);
100
101
102 //
103 // Methods
104 //
105
112 Q_INVOKABLE bool operator==(Weather::Wind other) const;
113
114private:
115 static constexpr Units::Speed minWindSpeed = Units::Speed::fromKN(0.0);
116 static constexpr Units::Speed maxWindSpeed = Units::Speed::fromKN(100.0);
117
118 Units::Speed m_speed {};
119 Units::Angle m_directionFrom {};
120};
121
122} // namespace Weather
123
124// Declare meta types
125Q_DECLARE_METATYPE(Weather::Wind)
Convenience class for angle computations.
Definition Angle.h:41
Convenience class for speed computations.
Definition Speed.h:36
static Q_INVOKABLE constexpr Units::Speed fromKN(double speedInKT)
Constructs a speed.
Definition Speed.h:87
This extremely simple class holds the wind speed and direction.
Definition Wind.h:32
Units::Speed maxWindSpeed
Maximal wind speed that is considered valid.
Definition Wind.h:46
Units::Speed minWindSpeed
Minimal wind speed that is considered valid.
Definition Wind.h:43
void setDirectionFrom(Units::Angle newDirectionFrom)
Setter function for property of the same name.
auto speed() const -> Units::Speed
Getter function for property of the same name.
Definition Wind.h:78
Q_INVOKABLE bool operator==(Weather::Wind other) const
Equality check.
Units::Speed speed
Wind Speed.
Definition Wind.h:61
void setSpeed(Units::Speed newSpeed)
Setter function for property of the same name.
Units::Angle directionFrom
Wind Direction.
Definition Wind.h:53
Conversion between units used in aviation.
Definition Angle.h:34