2000-04-21 18:30:59 +00:00
|
|
|
// fixlist.cxx -- fix list management class
|
|
|
|
//
|
|
|
|
// Written by Curtis Olson, started April 2000.
|
|
|
|
//
|
2004-11-19 22:10:41 +00:00
|
|
|
// Copyright (C) 2000 Curtis L. Olson - http://www.flightgear.org/~curt
|
2000-04-21 18:30:59 +00:00
|
|
|
//
|
|
|
|
// This program is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU General Public License as
|
|
|
|
// published by the Free Software Foundation; either version 2 of the
|
|
|
|
// License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful, but
|
|
|
|
// WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
// General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with this program; if not, write to the Free Software
|
2006-02-21 01:16:04 +00:00
|
|
|
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2000-04-21 18:30:59 +00:00
|
|
|
//
|
|
|
|
// $Id$
|
|
|
|
|
|
|
|
|
2001-05-15 22:30:39 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include <config.h>
|
|
|
|
#endif
|
|
|
|
|
2008-08-22 19:49:03 +00:00
|
|
|
#include <algorithm>
|
|
|
|
|
2000-04-21 18:30:59 +00:00
|
|
|
#include <simgear/debug/logstream.hxx>
|
2001-03-25 14:20:12 +00:00
|
|
|
#include <simgear/misc/sgstream.hxx>
|
2008-12-23 14:41:58 +00:00
|
|
|
#include <simgear/misc/sg_path.hxx>
|
2000-09-27 20:16:22 +00:00
|
|
|
#include <simgear/math/sg_geodesy.hxx>
|
2000-04-21 18:30:59 +00:00
|
|
|
|
|
|
|
#include "fixlist.hxx"
|
2009-05-14 20:55:09 +00:00
|
|
|
#include <Navaids/fix.hxx>
|
2012-08-27 23:26:36 +00:00
|
|
|
#include <Navaids/NavDataCache.hxx>
|
2008-08-22 11:22:22 +00:00
|
|
|
|
2012-08-27 23:26:36 +00:00
|
|
|
FGFix::FGFix(PositionedID aGuid, const std::string& aIdent, const SGGeod& aPos) :
|
|
|
|
FGPositioned(aGuid, FIX, aIdent, aPos)
|
2008-09-10 08:54:49 +00:00
|
|
|
{
|
2000-04-21 18:30:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-08-27 23:26:36 +00:00
|
|
|
namespace flightgear
|
|
|
|
{
|
|
|
|
|
|
|
|
void loadFixes(const SGPath& path)
|
|
|
|
{
|
|
|
|
sg_gzifstream in( path.str() );
|
|
|
|
if ( !in.is_open() ) {
|
|
|
|
SG_LOG( SG_GENERAL, SG_ALERT, "Cannot open file: " << path.str() );
|
|
|
|
exit(-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
// toss the first two lines of the file
|
|
|
|
in >> skipeol;
|
|
|
|
in >> skipeol;
|
|
|
|
|
|
|
|
NavDataCache* cache = NavDataCache::instance();
|
|
|
|
|
|
|
|
// read in each remaining line of the file
|
|
|
|
while ( ! in.eof() ) {
|
|
|
|
double lat, lon;
|
|
|
|
std::string ident;
|
|
|
|
in >> lat >> lon >> ident;
|
|
|
|
if (lat > 95) break;
|
|
|
|
|
|
|
|
cache->insertFix(ident, SGGeod::fromDeg(lon, lat));
|
|
|
|
in >> skipcomment;
|
|
|
|
}
|
2008-09-10 08:54:49 +00:00
|
|
|
|
2000-04-21 18:30:59 +00:00
|
|
|
}
|
2012-08-27 23:26:36 +00:00
|
|
|
|
|
|
|
} // of namespace flightgear;
|