00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023 #ifdef HAVE_CONFIG_H
00024 # include <simgear_config.h>
00025 #endif
00026
00027 #include <simgear/math/polar3d.hxx>
00028 #include <simgear/math/sg_geodesy.hxx>
00029
00030 #include "waypoint.hxx"
00031
00032 using std::string;
00033
00034
00035 SGWayPoint::SGWayPoint( const double lon, const double lat, const double alt,
00036 const modetype, const string& s, const string& n ) :
00037 pos(SGGeod::fromDegM(lon, lat, alt)),
00038 id(s),
00039 name(n),
00040 _distance(0.0),
00041 _track(0.0),
00042 _speed(0.0)
00043 {
00044 }
00045
00046 SGWayPoint::SGWayPoint(const SGGeod& geod, const string& s, const string& n ) :
00047 pos(geod),
00048 id(s),
00049 name(n),
00050 _distance(0.0),
00051 _track(0.0),
00052 _speed(0.0)
00053 {
00054 }
00055
00056
00057 SGWayPoint::~SGWayPoint() {
00058 }
00059
00060 void SGWayPoint::CourseAndDistance(const SGGeod& cur, double& course, double& dist ) const {
00061 double reverse;
00062 SGGeodesy::inverse(cur, pos, course, reverse, dist);
00063 }
00064
00065
00066
00067
00068
00069 void SGWayPoint::CourseAndDistance( const double cur_lon,
00070 const double cur_lat,
00071 const double cur_alt,
00072 double *course, double *dist ) const {
00073 CourseAndDistance(SGGeod::fromDegM(cur_lon, cur_lat, cur_alt), *course, *dist);
00074 }
00075
00076
00077 void SGWayPoint::CourseAndDistance( const SGWayPoint &wp,
00078 double *course, double *dist ) const {
00079 CourseAndDistance( wp.get_target(), *course, *dist );
00080 }