2000-04-21 16:42:01 +00:00
|
|
|
// navlist.hxx -- navaids management class
|
2000-04-21 04:19:22 +00:00
|
|
|
//
|
|
|
|
// 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 04:19:22 +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
|
|
|
|
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
//
|
|
|
|
// $Id$
|
|
|
|
|
|
|
|
|
2000-04-21 16:42:01 +00:00
|
|
|
#ifndef _FG_NAVLIST_HXX
|
|
|
|
#define _FG_NAVLIST_HXX
|
2000-04-21 04:19:22 +00:00
|
|
|
|
|
|
|
|
|
|
|
#include <simgear/compiler.h>
|
2001-03-25 14:20:12 +00:00
|
|
|
#include <simgear/misc/sg_path.hxx>
|
2000-04-21 04:19:22 +00:00
|
|
|
|
|
|
|
#include <map>
|
|
|
|
#include <vector>
|
2002-06-07 21:03:27 +00:00
|
|
|
#include STL_STRING
|
2000-04-21 04:19:22 +00:00
|
|
|
|
2004-05-28 05:24:54 +00:00
|
|
|
#include "navrecord.hxx"
|
2000-04-21 04:19:22 +00:00
|
|
|
|
2001-03-23 22:59:18 +00:00
|
|
|
SG_USING_STD(map);
|
|
|
|
SG_USING_STD(vector);
|
2002-06-07 21:03:27 +00:00
|
|
|
SG_USING_STD(string);
|
2000-04-21 04:19:22 +00:00
|
|
|
|
|
|
|
|
2004-05-28 05:24:54 +00:00
|
|
|
// convenience types
|
|
|
|
typedef vector < FGNavRecord* > nav_list_type;
|
|
|
|
typedef nav_list_type::iterator nav_list_iterator;
|
|
|
|
typedef nav_list_type::const_iterator nav_list_const_iterator;
|
2000-04-21 04:19:22 +00:00
|
|
|
|
2004-05-28 05:24:54 +00:00
|
|
|
typedef map < int, nav_list_type > nav_map_type;
|
|
|
|
typedef nav_map_type::iterator nav_map_iterator;
|
|
|
|
typedef nav_map_type::const_iterator nav_map_const_iterator;
|
2000-04-21 04:19:22 +00:00
|
|
|
|
2004-05-28 05:24:54 +00:00
|
|
|
typedef map < string, nav_list_type > nav_ident_map_type;
|
|
|
|
|
|
|
|
|
|
|
|
class FGNavList {
|
|
|
|
|
|
|
|
nav_list_type navlist;
|
2000-04-21 04:19:22 +00:00
|
|
|
nav_map_type navaids;
|
2004-05-28 05:24:54 +00:00
|
|
|
nav_map_type navaids_by_tile;
|
2002-06-07 21:03:27 +00:00
|
|
|
nav_ident_map_type ident_navaids;
|
|
|
|
|
2003-01-25 20:45:39 +00:00
|
|
|
// Given a point and a list of stations, return the closest one to
|
|
|
|
// the specified point.
|
2004-05-28 05:24:54 +00:00
|
|
|
FGNavRecord *findNavFromList( const Point3D &aircraft,
|
2004-05-28 16:24:43 +00:00
|
|
|
const nav_list_type &stations );
|
2002-06-07 21:03:27 +00:00
|
|
|
|
2000-04-21 04:19:22 +00:00
|
|
|
public:
|
|
|
|
|
2000-04-21 16:42:01 +00:00
|
|
|
FGNavList();
|
|
|
|
~FGNavList();
|
2000-04-21 04:19:22 +00:00
|
|
|
|
2004-05-28 05:24:54 +00:00
|
|
|
// initialize the nav list
|
|
|
|
bool init();
|
|
|
|
|
|
|
|
// add an entry
|
|
|
|
bool add( FGNavRecord *n );
|
2000-04-21 04:19:22 +00:00
|
|
|
|
2003-01-25 20:45:39 +00:00
|
|
|
// Query the database for the specified frequency. It is assumed
|
|
|
|
// that there will be multiple stations with matching frequencies
|
|
|
|
// so a position must be specified. Lon and lat are in degrees,
|
|
|
|
// elev is in meters.
|
2004-05-28 05:24:54 +00:00
|
|
|
FGNavRecord *findByFreq( double freq, double lon, double lat, double elev );
|
|
|
|
|
|
|
|
// Query the database for the specified frequency. It is assumed
|
|
|
|
// that there will be multiple stations with matching frequencies
|
|
|
|
// so a position must be specified. Lon and lat are in degrees,
|
|
|
|
// elev is in meters.
|
|
|
|
FGNavRecord *findByLoc( double lon, double lat, double elev );
|
2002-06-07 21:03:27 +00:00
|
|
|
|
|
|
|
// locate closest item in the DB matching the requested ident
|
2004-05-28 05:24:54 +00:00
|
|
|
FGNavRecord *findByIdent( const char* ident, const double lon, const double lat );
|
2003-01-05 00:10:36 +00:00
|
|
|
|
2003-01-25 20:45:39 +00:00
|
|
|
// Given an Ident and optional freqency, return the first matching
|
|
|
|
// station.
|
2004-05-28 05:24:54 +00:00
|
|
|
FGNavRecord *findByIdentAndFreq( const char* ident,
|
|
|
|
const double freq = 0.0 );
|
|
|
|
|
|
|
|
// returns the closest entry to the give lon/lat/elev
|
|
|
|
FGNavRecord *findClosest( double lon_rad, double lat_rad, double elev_m );
|
|
|
|
|
2004-05-28 16:24:43 +00:00
|
|
|
inline nav_map_type get_navaids() const { return navaids; }
|
2000-04-21 04:19:22 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2000-04-21 16:42:01 +00:00
|
|
|
#endif // _FG_NAVLIST_HXX
|