1
0
Fork 0
flightgear/src/Navaids/testnavs.cxx

36 lines
1 KiB
C++
Raw Normal View History

#include <simgear/misc/fgpath.hxx>
2000-04-21 18:00:47 +00:00
#include "ilslist.hxx"
2000-04-21 16:03:36 +00:00
#include "navlist.hxx"
int main() {
2000-04-21 18:00:47 +00:00
double heading, dist;
2000-04-21 05:26:24 +00:00
2000-04-21 18:00:47 +00:00
FGNavList navs;
FGPath p_nav( "/home/curt/FlightGear/Navaids/default.nav" );
navs.init( p_nav );
2000-04-21 16:42:01 +00:00
FGNav n;
2000-04-21 05:26:24 +00:00
if ( navs.query( -93.2, 45.14, 3000, 117.30,
&n, &heading, &dist) ) {
2000-04-21 18:00:47 +00:00
cout << "Found a vor station in range" << endl;
2000-04-21 05:26:24 +00:00
cout << " id = " << n.get_ident() << endl;
cout << " heading = " << heading << " dist = " << dist << endl;
} else {
2000-04-21 18:00:47 +00:00
cout << "not picking up vor. :-(" << endl;
}
FGILSList ilslist;
FGPath p_ils( "/home/curt/FlightGear/Navaids/default.ils" );
ilslist.init( p_ils );
FGILS i;
if ( ilslist.query( -93.1, 45.24, 3000, 110.30,
&i, &heading, &dist) ) {
cout << "Found an ils station in range" << endl;
cout << " apt = " << i.get_aptcode() << endl;
cout << " rwy = " << i.get_rwyno() << endl;
cout << " heading = " << heading << " dist = " << dist << endl;
} else {
cout << "not picking up ils. :-(" << endl;
2000-04-21 05:26:24 +00:00
}
}