]> git.mxchange.org Git - flightgear.git/blob - src/Airports/simple.hxx
7d3372ecbea3bda853f5f3bba14f94a72d411b7f
[flightgear.git] / src / Airports / simple.hxx
1 // simple.hxx -- a really simplistic class to manage airport ID,
2 //                 lat, lon of the center of one of it's runways, and 
3 //                 elevation in feet.
4 //
5 // Written by Curtis Olson, started April 1998.
6 //
7 // Copyright (C) 1998  Curtis L. Olson  - curt@me.umn.edu
8 //
9 // This program is free software; you can redistribute it and/or
10 // modify it under the terms of the GNU General Public License as
11 // published by the Free Software Foundation; either version 2 of the
12 // License, or (at your option) any later version.
13 //
14 // This program is distributed in the hope that it will be useful, but
15 // WITHOUT ANY WARRANTY; without even the implied warranty of
16 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17 // General Public License for more details.
18 //
19 // You should have received a copy of the GNU General Public License
20 // along with this program; if not, write to the Free Software
21 // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 //
23 // $Id$
24
25
26 #ifndef _FG_SIMPLE_HXX
27 #define _FG_SIMPLE_HXX
28
29
30 #ifndef __cplusplus                                                          
31 # error This library requires C++
32 #endif                                   
33
34
35 #ifdef HAVE_CONFIG_H
36 #  include <config.h>
37 #endif
38
39 #include <simgear/compiler.h>
40
41 #include STL_STRING
42 #include <map>
43 #include <vector>
44
45 SG_USING_STD(string);
46 SG_USING_STD(map);
47 SG_USING_STD(vector);
48
49
50 struct FGAirport {
51
52     string id;
53     double longitude;
54     double latitude;
55     double elevation;
56     string code;
57     string name;
58     bool has_metar;
59 };
60
61 typedef map < string, FGAirport > airport_map;
62 typedef airport_map::iterator airport_map_iterator;
63 typedef airport_map::const_iterator const_airport_map_iterator;
64
65 typedef vector < FGAirport * > airport_list;
66
67
68 class FGAirportList {
69
70 private:
71
72     airport_map airports_by_id;
73     airport_list airports_array;
74
75 public:
76
77     // Constructor
78     FGAirportList( const string& file );
79
80     // Destructor
81     ~FGAirportList();
82
83     // search for the specified id.
84     // Returns true if successful, otherwise returns false.
85     // On success, airport data is returned thru "airport" pointer.
86     // "airport" is not changed if "apt" is not found.
87     FGAirport search( const string& id );
88
89     // search for the airport closest to the specified position
90     // (currently a linear inefficient search so it's probably not
91     // best to use this at runtime.)  If with_metar is true, then only
92     // return station id's marked as having metar data.
93     FGAirport search( double lon_deg, double lat_deg, bool with_metar );
94
95
96     /**
97      * Return the number of airports in the list.
98      */
99     int size() const;
100
101
102     /**
103      * Return a specific airport, by position.
104      */
105     const FGAirport *getAirport( int index ) const;
106
107
108     /**
109      * Mark the specified airport record as not having metar
110      */
111     void no_metar( const string &id );
112
113 };
114
115
116 #endif // _FG_SIMPLE_HXX
117
118