X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=simgear%2Froute%2Fwaytest.cxx;h=e80920a7535c68fbf1ac1b0107d576fc2cc44de9;hb=7bdb530440d1dadc991f305edb1b70ec85f27451;hp=f3c428c9271cc244b07da5f40911e53d56455648;hpb=733e6fa14ff507a1022ecab8d55cc9bf587bee40;p=simgear.git diff --git a/simgear/route/waytest.cxx b/simgear/route/waytest.cxx index f3c428c9..e80920a7 100644 --- a/simgear/route/waytest.cxx +++ b/simgear/route/waytest.cxx @@ -5,12 +5,12 @@ #include "waypoint.hxx" -SG_USING_STD(cout); -SG_USING_STD(endl); +using std::cout; +using std::endl; int main() { SGWayPoint a1(-93.216923, 44.880547, 0.0, SGWayPoint::WGS84, "KMSP"); - SGWayPoint a2(-93.216923, 44.880547, 0.0, SGWayPoint::SPHERICAL, "KMSP"); + // KMSN (Madison) double cur_lon = -89.336939; @@ -24,43 +24,15 @@ int main() { cout << "Distance to " << a1.get_id() << " is " << distance * SG_METER_TO_NM << endl; - a2.CourseAndDistance( cur_lon, cur_lat, cur_alt, &course, &distance ); - cout << "Course to " << a2.get_id() << " is " << course << endl; - cout << "Distance to " << a2.get_id() << " is " << distance * SG_METER_TO_NM - << endl; - cout << endl; - SGWayPoint b1(-88.237037, 43.041038, 0.0, SGWayPoint::WGS84, "KUES"); - SGWayPoint b2(-88.237037, 43.041038, 0.0, SGWayPoint::SPHERICAL, "KUES"); + b1.CourseAndDistance( cur_lon, cur_lat, cur_alt, &course, &distance ); cout << "Course to " << b1.get_id() << " is " << course << endl; cout << "Distance to " << b1.get_id() << " is " << distance * SG_METER_TO_NM << endl; - b2.CourseAndDistance( cur_lon, cur_lat, cur_alt, &course, &distance ); - cout << "Course to " << b2.get_id() << " is " << course << endl; - cout << "Distance to " << b2.get_id() << " is " << distance * SG_METER_TO_NM - << endl; cout << endl; - - cur_lon = 10; - cur_lat = 10; - - SGWayPoint c1(-20, 10, 0, SGWayPoint::CARTESIAN, "Due East"); - c1.CourseAndDistance( cur_lon, cur_lat, cur_alt, &course, &distance ); - cout << "Course to " << c1.get_id() << " is " << course << endl; - cout << "Distance to " << c1.get_id() << " is " << distance << endl; - - SGWayPoint c2(20, 20, 0, SGWayPoint::CARTESIAN, "Due SW"); - c2.CourseAndDistance( cur_lon, cur_lat, cur_alt, &course, &distance ); - cout << "Course to " << c2.get_id() << " is " << course << endl; - cout << "Distance to " << c2.get_id() << " is " << distance << endl; - - SGWayPoint c3(20, 0, 0, SGWayPoint::CARTESIAN, "Due NW"); - c3.CourseAndDistance( cur_lon, cur_lat, cur_alt, &course, &distance ); - cout << "Course to " << c3.get_id() << " is " << course << endl; - cout << "Distance to " << c3.get_id() << " is " << distance << endl; return 0; }