]> git.mxchange.org Git - flightgear.git/blob - src/Navaids/fixlist.cxx
fix trx and rx heights and improve calculations
[flightgear.git] / src / Navaids / fixlist.cxx
1 // fixlist.cxx -- fix list management class
2 //
3 // Written by Curtis Olson, started April 2000.
4 //
5 // Copyright (C) 2000  Curtis L. Olson - http://www.flightgear.org/~curt
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
24 #ifdef HAVE_CONFIG_H
25 #  include <config.h>
26 #endif
27
28 #include <algorithm>
29
30 #include <simgear/debug/logstream.hxx>
31 #include <simgear/misc/sgstream.hxx>
32 #include <simgear/misc/sg_path.hxx>
33 #include <simgear/math/sg_geodesy.hxx>
34
35 #include "fixlist.hxx"
36 #include <Navaids/fix.hxx>
37 #include <Airports/simple.hxx>
38
39 FGFix::FGFix(const std::string& aIdent, const SGGeod& aPos) :
40   FGPositioned(FIX, aIdent, aPos)
41 {
42   init(true); // init FGPositioned
43 }
44
45 // Constructor
46 FGFixList::FGFixList( void ) {
47 }
48
49
50 // Destructor
51 FGFixList::~FGFixList( void ) {
52 }
53
54
55 // load the navaids and build the map
56 bool FGFixList::init(const SGPath& path ) {
57     sg_gzifstream in( path.str() );
58     if ( !in.is_open() ) {
59         SG_LOG( SG_GENERAL, SG_ALERT, "Cannot open file: " << path.str() );
60         exit(-1);
61     }
62
63     // toss the first two lines of the file
64     in >> skipeol;
65     in >> skipeol;
66
67     // read in each remaining line of the file
68     while ( ! in.eof() ) {
69       double lat, lon;
70       std::string ident;
71       in >> lat >> lon >> ident;
72       if (lat > 95) break;
73
74       // fix gets added to the FGPositioned spatial indices, so we don't need
75       // to hold onto it here.
76       new FGFix(ident, SGGeod::fromDeg(lon, lat));
77       in >> skipcomment;
78     }
79     return true;
80 }