]> git.mxchange.org Git - flightgear.git/blob - src/Airports/simple.hxx
Make a subtle change to tile loading/unloading policy in order to make the tile
[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     string id;
52     double longitude;
53     double latitude;
54     double elevation;
55     string code;
56     string name;
57     bool has_metar;
58 };
59
60 typedef map < string, FGAirport > airport_map;
61 typedef airport_map::iterator airport_map_iterator;
62 typedef airport_map::const_iterator const_airport_map_iterator;
63
64 typedef vector < FGAirport * > airport_list;
65
66
67 class FGAirportList {
68
69 private:
70
71     airport_map airports_by_id;
72     airport_list airports_array;
73
74 public:
75
76     // Constructor
77     FGAirportList( const string &airport_file, const string &metar_file );
78
79     // Destructor
80     ~FGAirportList();
81
82     // search for the specified id.
83     // Returns true if successful, otherwise returns false.
84     // On success, airport data is returned thru "airport" pointer.
85     // "airport" is not changed if "apt" is not found.
86     FGAirport search( const string& id );
87
88     // search for the airport closest to the specified position
89     // (currently a linear inefficient search so it's probably not
90     // best to use this at runtime.)  If with_metar is true, then only
91     // return station id's marked as having metar data.
92     FGAirport search( double lon_deg, double lat_deg, bool with_metar );
93
94
95     /**
96      * Return the number of airports in the list.
97      */
98     int size() const;
99
100
101     /**
102      * Return a specific airport, by position.
103      */
104     const FGAirport *getAirport( int index ) const;
105
106
107     /**
108      * Mark the specified airport record as not having metar
109      */
110     void no_metar( const string &id );
111
112 };
113
114
115 #endif // _FG_SIMPLE_HXX
116
117