2004-05-28 05:24:54 +00:00
|
|
|
// navrecord.hxx -- generic vor/dme/ndb class
|
|
|
|
//
|
|
|
|
// Written by Curtis Olson, started May 2004.
|
|
|
|
//
|
2004-11-19 22:10:41 +00:00
|
|
|
// Copyright (C) 2004 Curtis L. Olson - http://www.flightgear.org/~curt
|
2004-05-28 05:24:54 +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$
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef _FG_NAVRECORD_HXX
|
|
|
|
#define _FG_NAVRECORD_HXX
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include <simgear/compiler.h>
|
|
|
|
#include <simgear/math/sg_geodesy.hxx>
|
|
|
|
#include <simgear/misc/sgstream.hxx>
|
|
|
|
#include <simgear/magvar/magvar.hxx>
|
|
|
|
#include <simgear/timing/sg_time.hxx>
|
|
|
|
|
|
|
|
#ifdef SG_HAVE_STD_INCLUDES
|
|
|
|
# include <istream>
|
|
|
|
#elif defined( __BORLANDC__ ) || (__APPLE__)
|
|
|
|
# include <iostream>
|
|
|
|
#else
|
|
|
|
# include <istream.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
SG_USING_STD(istream);
|
|
|
|
|
|
|
|
|
2004-06-20 18:58:44 +00:00
|
|
|
#define FG_NAV_DEFAULT_RANGE 50 // nm
|
|
|
|
#define FG_LOC_DEFAULT_RANGE 18 // nm
|
|
|
|
#define FG_DME_DEFAULT_RANGE 50 // nm
|
|
|
|
#define FG_NAV_MAX_RANGE 300 // nm
|
2004-05-28 05:24:54 +00:00
|
|
|
|
2005-11-28 22:42:23 +00:00
|
|
|
// Shield the rest of FG from possibly changing details of Robins navaid type numbering system.
|
|
|
|
// Currently only the GPS code uses this - extra types (LOC, GS etc) may need to be added
|
|
|
|
// should other FG code choose to use this.
|
|
|
|
enum fg_nav_types {
|
|
|
|
FG_NAV_VOR,
|
|
|
|
FG_NAV_NDB,
|
|
|
|
FG_NAV_ILS,
|
|
|
|
FG_NAV_ANY
|
|
|
|
};
|
2004-05-28 05:24:54 +00:00
|
|
|
|
|
|
|
class FGNavRecord {
|
|
|
|
|
|
|
|
int type;
|
2005-11-28 22:42:23 +00:00
|
|
|
double lon, lat; // location in geodetic coords (degrees)
|
2004-05-28 05:24:54 +00:00
|
|
|
double elev_ft;
|
|
|
|
double x, y, z; // location in cartesian coords (earth centered)
|
|
|
|
int freq;
|
|
|
|
int range;
|
|
|
|
double multiuse; // can be slaved variation of VOR
|
|
|
|
// (degrees) or localizer heading
|
|
|
|
// (degrees) or dme bias (nm)
|
|
|
|
|
|
|
|
string ident; // navaid ident
|
2004-06-09 03:13:13 +00:00
|
|
|
string name; // verbose name in nav database
|
|
|
|
string apt_id; // corresponding airport id
|
2004-05-28 05:24:54 +00:00
|
|
|
|
|
|
|
|
|
|
|
bool serviceable; // for failure modeling
|
|
|
|
string trans_ident; // for failure modeling
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
inline FGNavRecord(void);
|
|
|
|
inline ~FGNavRecord(void) {}
|
|
|
|
|
|
|
|
inline int get_type() const { return type; }
|
2005-11-28 22:42:23 +00:00
|
|
|
inline fg_nav_types get_fg_type() const;
|
|
|
|
inline double get_lon() const { return lon; } // degrees
|
|
|
|
inline void set_lon( double l ) { lon = l; } // degrees
|
|
|
|
inline double get_lat() const { return lat; } // degrees
|
|
|
|
inline void set_lat( double l ) { lat = l; } // degrees
|
2004-05-28 05:24:54 +00:00
|
|
|
inline double get_elev_ft() const { return elev_ft; }
|
2004-06-09 03:13:13 +00:00
|
|
|
inline void set_elev_ft( double e ) { elev_ft = e; }
|
2004-05-28 05:24:54 +00:00
|
|
|
inline double get_x() const { return x; }
|
|
|
|
inline double get_y() const { return y; }
|
|
|
|
inline double get_z() const { return z; }
|
|
|
|
inline int get_freq() const { return freq; }
|
|
|
|
inline int get_range() const { return range; }
|
|
|
|
inline double get_multiuse() const { return multiuse; }
|
2004-05-28 16:24:43 +00:00
|
|
|
inline void set_multiuse( double m ) { multiuse = m; }
|
2005-10-26 09:03:49 +00:00
|
|
|
inline const char *get_ident() const { return ident.c_str(); }
|
|
|
|
inline const string& get_name() const { return name; }
|
|
|
|
inline const string& get_apt_id() const { return apt_id; }
|
|
|
|
inline bool get_serviceable() const { return serviceable; }
|
|
|
|
inline const char *get_trans_ident() const { return trans_ident.c_str(); }
|
2004-05-28 05:24:54 +00:00
|
|
|
|
|
|
|
friend istream& operator>> ( istream&, FGNavRecord& );
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
inline
|
|
|
|
FGNavRecord::FGNavRecord(void) :
|
|
|
|
type(0),
|
|
|
|
lon(0.0), lat(0.0),
|
|
|
|
elev_ft(0.0),
|
|
|
|
x(0.0), y(0.0), z(0.0),
|
|
|
|
freq(0),
|
|
|
|
range(0),
|
|
|
|
multiuse(0.0),
|
|
|
|
ident(""),
|
|
|
|
name(""),
|
2004-06-09 03:13:13 +00:00
|
|
|
apt_id(""),
|
2004-05-28 05:24:54 +00:00
|
|
|
serviceable(true),
|
|
|
|
trans_ident("")
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-11-28 22:42:23 +00:00
|
|
|
inline fg_nav_types FGNavRecord::get_fg_type() const {
|
|
|
|
switch(type) {
|
|
|
|
case 2: return(FG_NAV_NDB);
|
|
|
|
case 3: return(FG_NAV_VOR);
|
|
|
|
case 4: return(FG_NAV_ILS);
|
|
|
|
default: return(FG_NAV_ANY);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-05-28 05:24:54 +00:00
|
|
|
inline istream&
|
|
|
|
operator >> ( istream& in, FGNavRecord& n )
|
|
|
|
{
|
|
|
|
in >> n.type;
|
|
|
|
|
|
|
|
if ( n.type == 99 ) {
|
|
|
|
return in >> skipeol;
|
|
|
|
}
|
|
|
|
|
2006-01-24 17:13:28 +00:00
|
|
|
in >> n.lat >> n.lon >> n.elev_ft >> n.freq >> n.range >> n.multiuse
|
2004-05-28 05:24:54 +00:00
|
|
|
>> n.ident;
|
|
|
|
getline( in, n.name );
|
|
|
|
|
|
|
|
// silently multiply adf frequencies by 100 so that adf
|
|
|
|
// vs. nav/loc frequency lookups can use the same code.
|
|
|
|
if ( n.type == 2 ) {
|
|
|
|
n.freq *= 100;
|
|
|
|
}
|
|
|
|
|
2004-05-28 16:24:43 +00:00
|
|
|
// Remove any leading spaces before the name
|
|
|
|
while ( n.name.substr(0,1) == " " ) {
|
2004-05-28 05:24:54 +00:00
|
|
|
n.name = n.name.erase(0,1);
|
|
|
|
}
|
|
|
|
|
2004-06-09 03:13:13 +00:00
|
|
|
if ( n.type >= 4 && n.type <= 9 ) {
|
|
|
|
// these types are always associated with an airport id
|
|
|
|
string::size_type pos = n.name.find(" ");
|
|
|
|
n.apt_id = n.name.substr(0, pos);
|
|
|
|
}
|
|
|
|
|
2006-01-24 17:13:28 +00:00
|
|
|
// Ranges are included with the latest data format, no need to
|
|
|
|
// assign our own defaults, unless the range is not set for some
|
|
|
|
// reason.
|
|
|
|
|
|
|
|
if ( n.range < 0.1 ) {
|
|
|
|
// assign default ranges
|
|
|
|
|
|
|
|
if ( n.type == 2 || n.type == 3 ) {
|
|
|
|
n.range = FG_NAV_DEFAULT_RANGE;
|
|
|
|
} else if ( n.type == 4 || n.type == 5 || n.type == 6 ) {
|
|
|
|
n.range = FG_LOC_DEFAULT_RANGE;
|
|
|
|
} else if ( n.type == 12 ) {
|
|
|
|
n.range = FG_DME_DEFAULT_RANGE;
|
|
|
|
} else {
|
|
|
|
n.range = FG_LOC_DEFAULT_RANGE;
|
|
|
|
}
|
2004-05-28 05:24:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// transmitted ident (same as ident unless modeling a fault)
|
|
|
|
n.trans_ident = n.ident;
|
|
|
|
|
|
|
|
// generate cartesian coordinates
|
|
|
|
Point3D geod( n.lon * SGD_DEGREES_TO_RADIANS,
|
|
|
|
n.lat * SGD_DEGREES_TO_RADIANS,
|
|
|
|
n.elev_ft * SG_FEET_TO_METER );
|
|
|
|
Point3D cart = sgGeodToCart( geod );
|
|
|
|
n.x = cart.x();
|
|
|
|
n.y = cart.y();
|
|
|
|
n.z = cart.z();
|
|
|
|
|
|
|
|
return in;
|
|
|
|
}
|
|
|
|
|
2005-10-01 09:56:53 +00:00
|
|
|
class FGTACANRecord {
|
2004-05-28 05:24:54 +00:00
|
|
|
|
2005-10-01 09:56:53 +00:00
|
|
|
string channel;
|
|
|
|
int freq;
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
inline FGTACANRecord(void);
|
|
|
|
inline ~FGTACANRecord(void) {}
|
|
|
|
|
2005-10-26 09:03:49 +00:00
|
|
|
inline const string& get_channel() const { return channel; }
|
2005-10-01 09:56:53 +00:00
|
|
|
inline int get_freq() const { return freq; }
|
|
|
|
friend istream& operator>> ( istream&, FGTACANRecord& );
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
inline
|
|
|
|
FGTACANRecord::FGTACANRecord(void) :
|
|
|
|
channel(""),
|
|
|
|
freq(0)
|
|
|
|
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
inline istream&
|
|
|
|
operator >> ( istream& in, FGTACANRecord& n )
|
|
|
|
{
|
|
|
|
in >> n.channel >> n.freq ;
|
|
|
|
//getline( in, n.name );
|
|
|
|
|
|
|
|
return in;
|
|
|
|
}
|
2004-05-28 05:24:54 +00:00
|
|
|
#endif // _FG_NAVRECORD_HXX
|