]> git.mxchange.org Git - flightgear.git/blob - src/ATC/CurrentWeatherATISInformationProvider.hxx
Fix a typo breaking some takeoff-state logic.
[flightgear.git] / src / ATC / CurrentWeatherATISInformationProvider.hxx
1 /*
2 Provide Data for the ATIS Encoder from metarproperties
3 Copyright (C) 2014 Torsten Dreyer
4
5 This program is free software; you can redistribute it and/or
6 modify it under the terms of the GNU General Public License
7 as published by the Free Software Foundation; either version 2
8 of the License, or (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 Free Software
17 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
18 */
19
20 #ifndef __CURRENTWEATHER_ATIS_ENCODER_HXX
21 #define __CURRENTWEATHER_ATIS_ENCODER_HXX
22
23 /* ATIS encoder from current weather */
24
25 #include <string>
26 #include "ATISEncoder.hxx"
27
28 class CurrentWeatherATISInformationProvider : public ATISInformationProvider
29 {
30 public:
31     CurrentWeatherATISInformationProvider( const std::string & airportId );
32     virtual ~CurrentWeatherATISInformationProvider();
33
34 protected:
35     virtual bool isValid();
36     virtual std::string airportId();
37     virtual long getTime();
38     virtual int getWindDeg();
39     virtual int getWindMinDeg() { return getWindDeg(); }
40     virtual int getWindMaxDeg() { return getWindDeg(); }
41     virtual int getWindSpeedKt();
42     virtual int getGustsKt();
43     virtual int getQnh();
44     virtual bool isCavok();
45     virtual int getVisibilityMeters();
46     virtual std::string getPhenomena();
47     virtual CloudEntries getClouds();
48     virtual int getTemperatureDeg();
49     virtual int getDewpointDeg();
50     virtual std::string getTrend();
51 private:
52     std::string _airportId;
53     SGPropertyNode_ptr _environment;
54     
55 };
56
57 #endif