FlightGear next
fgmetar.hxx
Go to the documentation of this file.
1// metar interface class
2//
3// Written by Melchior FRANZ, started January 2005.
4//
5// Copyright (C) 2005 Melchior FRANZ - mfranz@aon.at
6//
7// This program is free software; you can redistribute it and/or
8// modify it under the terms of the GNU General Public License as
9// published by the Free Software Foundation; either version 2 of the
10// License, or (at your option) any later version.
11//
12// This program is distributed in the hope that it will be useful, but
13// WITHOUT ANY WARRANTY; without even the implied warranty of
14// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15// General Public License for more details.
16//
17// You should have received a copy of the GNU General Public License
18// along with this program; if not, write to the Free Software
19// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20//
21// $Id$
22
23#pragma once
24
25#include <vector>
26#include <map>
27#include <string>
28#include <time.h>
29
30#include <simgear/environment/metar.hxx>
31
32
33class FGMetar : public SGMetar, public SGReferenced {
34public:
35 FGMetar(const std::string& icao);
36
37 long getAge_min() const;
38 time_t getTime() const { return _time; }
39 double getRain() const { return _rain / 3.0; }
40 double getHail() const { return _hail / 3.0; }
41 double getSnow() const { return _snow / 3.0; }
42 bool getSnowCover() const { return _snow_cover; }
43
44private:
45 time_t _rq_time;
46 time_t _time;
47 bool _snow_cover;
48};
double getRain() const
Definition fgmetar.hxx:39
FGMetar(const std::string &icao)
Definition fgmetar.cxx:34
double getSnow() const
Definition fgmetar.hxx:41
double getHail() const
Definition fgmetar.hxx:40
time_t getTime() const
Definition fgmetar.hxx:38
long getAge_min() const
Definition fgmetar.cxx:147
bool getSnowCover() const
Definition fgmetar.hxx:42