2001-03-25 14:20:12 +00:00
|
|
|
#include <simgear/misc/sg_path.hxx>
|
2000-04-21 04:19:22 +00:00
|
|
|
|
2000-04-21 18:30:59 +00:00
|
|
|
#include "fixlist.hxx"
|
2000-04-21 18:00:47 +00:00
|
|
|
#include "ilslist.hxx"
|
2000-04-21 16:03:36 +00:00
|
|
|
#include "navlist.hxx"
|
2002-06-07 21:03:27 +00:00
|
|
|
#include "mkrbeacons.hxx"
|
|
|
|
|
|
|
|
// change this!
|
|
|
|
const string FG_DATA_DIR("/usr/local/lib/FlightGear");
|
2000-04-21 04:19:22 +00:00
|
|
|
|
|
|
|
int main() {
|
2000-04-21 18:00:47 +00:00
|
|
|
double heading, dist;
|
2000-04-21 05:26:24 +00:00
|
|
|
|
2004-05-26 18:15:19 +00:00
|
|
|
FGNavList *current_navlist = new FGNavList;
|
2002-06-07 21:03:27 +00:00
|
|
|
SGPath p_nav( FG_DATA_DIR + "/Navaids/default.nav" );
|
|
|
|
|
2000-04-24 23:51:56 +00:00
|
|
|
current_navlist->init( p_nav );
|
2002-06-07 21:03:27 +00:00
|
|
|
|
2003-01-25 20:45:39 +00:00
|
|
|
FGNav *n;
|
|
|
|
if ( (n = current_navlist->findByFreq( -93.2 * SG_DEGREES_TO_RADIANS,
|
|
|
|
45.14 * SG_DEGREES_TO_RADIANS,
|
|
|
|
3000, 117.30)) != NULL )
|
2001-11-07 17:55:28 +00:00
|
|
|
{
|
2000-04-21 18:00:47 +00:00
|
|
|
cout << "Found a vor station in range" << endl;
|
2003-01-25 20:45:39 +00:00
|
|
|
cout << " id = " << n->get_ident() << endl;
|
2000-04-21 05:26:24 +00:00
|
|
|
} else {
|
2000-04-21 18:00:47 +00:00
|
|
|
cout << "not picking up vor. :-(" << endl;
|
|
|
|
}
|
|
|
|
|
2003-01-25 20:45:39 +00:00
|
|
|
FGNav *dcs;
|
|
|
|
if ( (dcs = current_navlist->findByIdent( "DCS",
|
|
|
|
-3.3 * SG_DEGREES_TO_RADIANS,
|
|
|
|
55.9 * SG_DEGREES_TO_RADIANS))
|
|
|
|
!= NULL ) {
|
2002-06-07 21:03:27 +00:00
|
|
|
|
|
|
|
cout << "Found DCS by ident" << endl;
|
2003-01-25 20:45:39 +00:00
|
|
|
if (dcs->get_freq() != 11520)
|
2002-06-07 21:03:27 +00:00
|
|
|
cout << "Frequency for DCS VOR is wrong (should be 115.20), it's "
|
2003-01-25 20:45:39 +00:00
|
|
|
<< dcs->get_freq() << endl;
|
2002-06-07 21:03:27 +00:00
|
|
|
} else {
|
|
|
|
cout << "couldn't locate DCS (Dean-Cross) VOR" << endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
// we have to init the marker beacon storage before we parse the ILS file
|
2004-05-26 18:15:19 +00:00
|
|
|
FGMarkerBeacons *current_beacons = new FGMarkerBeacons;
|
2002-06-07 21:03:27 +00:00
|
|
|
current_beacons->init();
|
|
|
|
|
2004-05-26 18:15:19 +00:00
|
|
|
FGILSList *current_ilslist = new FGILSList;
|
2002-06-07 21:03:27 +00:00
|
|
|
SGPath p_ils( FG_DATA_DIR + "/Navaids/default.ils" );
|
2000-04-24 23:51:56 +00:00
|
|
|
current_ilslist->init( p_ils );
|
2003-02-03 20:05:27 +00:00
|
|
|
FGILS *i = current_ilslist->findByFreq( -93.1 * SG_DEGREES_TO_RADIANS,
|
|
|
|
45.24 * SG_DEGREES_TO_RADIANS,
|
|
|
|
3000, 110.30);
|
|
|
|
if ( i != NULL ) {
|
2000-04-21 18:00:47 +00:00
|
|
|
cout << "Found an ils station in range" << endl;
|
2003-02-03 20:05:27 +00:00
|
|
|
cout << " apt = " << i->get_aptcode() << endl;
|
|
|
|
cout << " rwy = " << i->get_rwyno() << endl;
|
2000-04-21 18:00:47 +00:00
|
|
|
} else {
|
|
|
|
cout << "not picking up ils. :-(" << endl;
|
2000-04-21 05:26:24 +00:00
|
|
|
}
|
2000-04-21 18:30:59 +00:00
|
|
|
|
2004-05-26 18:15:19 +00:00
|
|
|
FGFixList *current_fixlist = new FGFixList;
|
2002-06-07 21:03:27 +00:00
|
|
|
SGPath p_fix( FG_DATA_DIR + "/Navaids/default.fix" );
|
2000-04-24 23:51:56 +00:00
|
|
|
current_fixlist->init( p_fix );
|
2000-04-21 18:30:59 +00:00
|
|
|
FGFix fix;
|
2002-06-07 21:03:27 +00:00
|
|
|
|
|
|
|
// attempting to get the position relative to the OTR VOR; heading
|
|
|
|
// should be 108 degrees, distance 74nm (according to my SimCharts
|
|
|
|
// v1.5)
|
2003-01-05 00:10:36 +00:00
|
|
|
if ( current_fixlist->query_and_offset( "DOGGA",
|
|
|
|
-0.103 * SG_DEGREES_TO_RADIANS,
|
|
|
|
53.698 * SG_DEGREES_TO_RADIANS,
|
|
|
|
3000, &fix, &heading, &dist) )
|
2001-11-07 17:55:28 +00:00
|
|
|
{
|
2000-04-21 18:30:59 +00:00
|
|
|
cout << "Found a matching fix" << endl;
|
|
|
|
cout << " id = " << fix.get_ident() << endl;
|
2002-06-07 21:03:27 +00:00
|
|
|
cout << " heading = " << heading << " dist = " << dist * SG_METER_TO_NM
|
|
|
|
<< endl;
|
2000-04-21 18:30:59 +00:00
|
|
|
} else {
|
|
|
|
cout << "did not find fix. :-(" << endl;
|
|
|
|
}
|
2000-04-21 04:19:22 +00:00
|
|
|
}
|