2003-03-10 14:09:43 +00:00
|
|
|
// gps.cxx - distance-measuring equipment.
|
|
|
|
// Written by David Megginson, started 2003.
|
|
|
|
//
|
|
|
|
// This file is in the Public Domain and comes with no warranty.
|
|
|
|
|
2004-03-16 10:02:46 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include <config.h>
|
|
|
|
#endif
|
|
|
|
|
2003-03-10 14:09:43 +00:00
|
|
|
#include <simgear/compiler.h>
|
2004-03-15 19:23:39 +00:00
|
|
|
#include <Aircraft/aircraft.hxx>
|
2003-03-10 14:09:43 +00:00
|
|
|
|
2004-05-01 09:40:09 +00:00
|
|
|
#include <simgear/route/route.hxx>
|
|
|
|
#include <simgear/math/sg_random.h>
|
2004-05-06 09:29:26 +00:00
|
|
|
#include <simgear/sg_inlines.h>
|
2004-03-15 19:23:39 +00:00
|
|
|
#include <Airports/simple.hxx>
|
2004-05-01 09:40:09 +00:00
|
|
|
|
2004-03-15 19:23:39 +00:00
|
|
|
#include <Main/fg_init.hxx>
|
|
|
|
#include <Main/globals.hxx>
|
2003-03-10 14:09:43 +00:00
|
|
|
#include <Main/fg_props.hxx>
|
2004-03-15 19:23:39 +00:00
|
|
|
#include <Main/util.hxx>
|
|
|
|
#include <Navaids/fixlist.hxx>
|
|
|
|
#include <Navaids/navlist.hxx>
|
2003-03-10 14:09:43 +00:00
|
|
|
|
|
|
|
#include "gps.hxx"
|
|
|
|
|
2004-03-15 19:23:39 +00:00
|
|
|
SG_USING_STD(string);
|
|
|
|
|
2003-03-10 14:09:43 +00:00
|
|
|
|
2004-10-16 12:37:39 +00:00
|
|
|
GPS::GPS ( SGPropertyNode *node)
|
|
|
|
: _last_valid(false),
|
|
|
|
_last_longitude_deg(0),
|
|
|
|
_last_latitude_deg(0),
|
|
|
|
_last_altitude_m(0),
|
2005-04-06 08:24:30 +00:00
|
|
|
_last_speed_kts(0),
|
|
|
|
_wp0_latitude_deg(0),
|
|
|
|
_wp0_longitude_deg(0),
|
|
|
|
_wp0_altitude_m(0),
|
|
|
|
_wp1_latitude_deg(0),
|
|
|
|
_wp1_longitude_deg(0),
|
|
|
|
_wp1_altitude_m(0),
|
|
|
|
_alt_dist_ratio(0),
|
|
|
|
_distance_m(0),
|
|
|
|
_course_deg(0)
|
2004-10-16 12:37:39 +00:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
for ( i = 0; i < node->nChildren(); ++i ) {
|
|
|
|
SGPropertyNode *child = node->getChild(i);
|
|
|
|
string cname = child->getName();
|
|
|
|
string cval = child->getStringValue();
|
|
|
|
if ( cname == "name" ) {
|
|
|
|
name = cval;
|
|
|
|
} else if ( cname == "number" ) {
|
|
|
|
num = child->getIntValue();
|
|
|
|
} else {
|
2004-10-24 11:05:14 +00:00
|
|
|
SG_LOG( SG_INSTR, SG_WARN, "Error in gps config logic" );
|
2004-10-16 12:37:39 +00:00
|
|
|
if ( name.length() ) {
|
2004-10-24 11:05:14 +00:00
|
|
|
SG_LOG( SG_INSTR, SG_WARN, "Section = " << name );
|
2004-10-16 12:37:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-03-10 14:09:43 +00:00
|
|
|
GPS::GPS ()
|
|
|
|
: _last_valid(false),
|
|
|
|
_last_longitude_deg(0),
|
|
|
|
_last_latitude_deg(0),
|
2004-03-15 19:23:39 +00:00
|
|
|
_last_altitude_m(0),
|
2005-04-06 08:24:30 +00:00
|
|
|
_last_speed_kts(0),
|
|
|
|
_wp0_latitude_deg(0),
|
|
|
|
_wp0_longitude_deg(0),
|
|
|
|
_wp0_altitude_m(0),
|
|
|
|
_wp1_latitude_deg(0),
|
|
|
|
_wp1_longitude_deg(0),
|
|
|
|
_wp1_altitude_m(0),
|
|
|
|
_alt_dist_ratio(0),
|
|
|
|
_distance_m(0),
|
|
|
|
_course_deg(0)
|
2003-03-10 14:09:43 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
GPS::~GPS ()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
GPS::init ()
|
|
|
|
{
|
2004-10-16 12:37:39 +00:00
|
|
|
route = new SGRoute;
|
|
|
|
route->clear();
|
|
|
|
|
|
|
|
string branch;
|
|
|
|
branch = "/instrumentation/" + name;
|
|
|
|
|
|
|
|
SGPropertyNode *node = fgGetNode(branch.c_str(), num, true );
|
|
|
|
|
2003-03-10 14:09:43 +00:00
|
|
|
_longitude_node = fgGetNode("/position/longitude-deg", true);
|
|
|
|
_latitude_node = fgGetNode("/position/latitude-deg", true);
|
|
|
|
_altitude_node = fgGetNode("/position/altitude-ft", true);
|
|
|
|
_magvar_node = fgGetNode("/environment/magnetic-variation-deg", true);
|
2004-10-16 12:37:39 +00:00
|
|
|
_serviceable_node = node->getChild("serviceable", 0, true);
|
2003-03-10 14:09:43 +00:00
|
|
|
_electrical_node = fgGetNode("/systems/electrical/outputs/gps", true);
|
2004-10-16 12:37:39 +00:00
|
|
|
|
|
|
|
SGPropertyNode *wp_node = node->getChild("wp", 0, true);
|
|
|
|
SGPropertyNode *wp0_node = wp_node->getChild("wp", 0, true);
|
|
|
|
SGPropertyNode *wp1_node = wp_node->getChild("wp", 1, true);
|
|
|
|
addWp = wp1_node->getChild("Add-to-route", 0, true);
|
|
|
|
|
|
|
|
_wp0_longitude_node = wp0_node->getChild("longitude-deg", 0, true);
|
|
|
|
_wp0_latitude_node = wp0_node->getChild("latitude-deg", 0, true);
|
2005-04-06 08:24:30 +00:00
|
|
|
_wp0_altitude_node = wp0_node->getChild("altitude-ft", 0, true);
|
2004-10-16 12:37:39 +00:00
|
|
|
_wp0_ID_node = wp0_node->getChild("ID", 0, true);
|
|
|
|
_wp0_name_node = wp0_node->getChild("name", 0, true);
|
|
|
|
_wp0_course_node = wp0_node->getChild("desired-course-deg", 0, true);
|
|
|
|
_wp0_waypoint_type_node = wp0_node->getChild("waypoint-type", 0, true);
|
|
|
|
_wp0_distance_node = wp0_node->getChild("distance-nm", 0, true);
|
|
|
|
_wp0_ttw_node = wp0_node->getChild("TTW", 0, true);
|
|
|
|
_wp0_bearing_node = wp0_node->getChild("bearing-true-deg", 0, true);
|
|
|
|
_wp0_mag_bearing_node = wp0_node->getChild("bearing-mag-deg", 0, true);
|
|
|
|
_wp0_course_deviation_node =
|
|
|
|
wp0_node->getChild("course-deviation-deg", 0, true);
|
|
|
|
_wp0_course_error_nm_node = wp0_node->getChild("course-error-nm", 0, true);
|
|
|
|
_wp0_to_flag_node = wp0_node->getChild("to-flag", 0, true);
|
|
|
|
_true_wp0_bearing_error_node =
|
|
|
|
wp0_node->getChild("true-bearing-error-deg", 0, true);
|
|
|
|
_magnetic_wp0_bearing_error_node =
|
|
|
|
wp0_node->getChild("magnetic-bearing-error-deg", 0, true);
|
|
|
|
|
|
|
|
_wp1_longitude_node = wp1_node->getChild("longitude-deg", 0, true);
|
|
|
|
_wp1_latitude_node = wp1_node->getChild("latitude-deg", 0, true);
|
2005-04-06 08:24:30 +00:00
|
|
|
_wp1_altitude_node = wp1_node->getChild("altitude-ft", 0, true);
|
2004-10-16 12:37:39 +00:00
|
|
|
_wp1_ID_node = wp1_node->getChild("ID", 0, true);
|
|
|
|
_wp1_name_node = wp1_node->getChild("name", 0, true);
|
|
|
|
_wp1_course_node = wp1_node->getChild("desired-course-deg", 0, true);
|
|
|
|
_wp1_waypoint_type_node = wp1_node->getChild("waypoint-type", 0, true);
|
|
|
|
_wp1_distance_node = wp1_node->getChild("distance-nm", 0, true);
|
|
|
|
_wp1_ttw_node = wp1_node->getChild("TTW", 0, true);
|
|
|
|
_wp1_bearing_node = wp1_node->getChild("bearing-true-deg", 0, true);
|
|
|
|
_wp1_mag_bearing_node = wp1_node->getChild("bearing-mag-deg", 0, true);
|
|
|
|
_wp1_course_deviation_node =
|
|
|
|
wp1_node->getChild("course-deviation-deg", 0, true);
|
|
|
|
_wp1_course_error_nm_node = wp1_node->getChild("course-error-nm", 0, true);
|
|
|
|
_wp1_to_flag_node = wp1_node->getChild("to-flag", 0, true);
|
|
|
|
_true_wp1_bearing_error_node =
|
|
|
|
wp1_node->getChild("true-bearing-error-deg", 0, true);
|
|
|
|
_magnetic_wp1_bearing_error_node =
|
|
|
|
wp1_node->getChild("magnetic-bearing-error-deg", 0, true);
|
|
|
|
_get_nearest_airport_node =
|
|
|
|
wp1_node->getChild("get-nearest-airport", 0, true);
|
|
|
|
|
|
|
|
_tracking_bug_node = node->getChild("tracking-bug", 0, true);
|
|
|
|
_raim_node = node->getChild("raim", 0, true);
|
|
|
|
|
2003-03-10 14:09:43 +00:00
|
|
|
_indicated_longitude_node =
|
2004-10-16 12:37:39 +00:00
|
|
|
node->getChild("indicated-longitude-deg", 0, true);
|
2003-03-10 14:09:43 +00:00
|
|
|
_indicated_latitude_node =
|
2004-10-16 12:37:39 +00:00
|
|
|
node->getChild("indicated-latitude-deg", 0, true);
|
2003-03-10 14:09:43 +00:00
|
|
|
_indicated_altitude_node =
|
2004-10-16 12:37:39 +00:00
|
|
|
node->getChild("indicated-altitude-ft", 0, true);
|
2004-05-01 09:40:09 +00:00
|
|
|
_indicated_vertical_speed_node =
|
2004-10-16 12:37:39 +00:00
|
|
|
node->getChild("indicated-vertical-speed", 0, true);
|
2003-03-10 14:09:43 +00:00
|
|
|
_true_track_node =
|
2004-10-16 12:37:39 +00:00
|
|
|
node->getChild("indicated-track-true-deg", 0, true);
|
2003-03-10 14:09:43 +00:00
|
|
|
_magnetic_track_node =
|
2004-10-16 12:37:39 +00:00
|
|
|
node->getChild("indicated-track_magnetic-deg", 0, true);
|
2003-03-10 14:09:43 +00:00
|
|
|
_speed_node =
|
2004-10-16 12:37:39 +00:00
|
|
|
node->getChild("indicated-ground-speed-kt", 0, true);
|
2004-03-15 19:23:39 +00:00
|
|
|
_odometer_node =
|
2004-10-16 12:37:39 +00:00
|
|
|
node->getChild("odometer", 0, true);
|
2004-03-15 19:23:39 +00:00
|
|
|
_trip_odometer_node =
|
2004-10-16 12:37:39 +00:00
|
|
|
node->getChild("trip-odometer", 0, true);
|
2004-04-16 22:12:26 +00:00
|
|
|
_true_bug_error_node =
|
2004-10-16 12:37:39 +00:00
|
|
|
node->getChild("true-bug-error-deg", 0, true);
|
2004-04-16 22:12:26 +00:00
|
|
|
_magnetic_bug_error_node =
|
2004-10-16 12:37:39 +00:00
|
|
|
node->getChild("magnetic-bug-error-deg", 0, true);
|
|
|
|
|
2004-05-01 09:40:09 +00:00
|
|
|
_leg_distance_node =
|
2004-10-16 12:37:39 +00:00
|
|
|
wp_node->getChild("leg-distance-nm", 0, true);
|
2004-05-01 09:40:09 +00:00
|
|
|
_leg_course_node =
|
2004-10-16 12:37:39 +00:00
|
|
|
wp_node->getChild("leg-true-course-deg", 0, true);
|
2004-05-01 09:40:09 +00:00
|
|
|
_leg_magnetic_course_node =
|
2004-10-16 12:37:39 +00:00
|
|
|
wp_node->getChild("leg-mag-course-deg", 0, true);
|
2004-05-01 09:40:09 +00:00
|
|
|
_alt_dist_ratio_node =
|
2004-10-16 12:37:39 +00:00
|
|
|
wp_node->getChild("alt-dist-ratio", 0, true);
|
2004-05-01 09:40:09 +00:00
|
|
|
_leg_course_deviation_node =
|
2004-10-16 12:37:39 +00:00
|
|
|
wp_node->getChild("leg-course-deviation-deg", 0, true);
|
2004-05-01 09:40:09 +00:00
|
|
|
_leg_course_error_nm_node =
|
2004-10-16 12:37:39 +00:00
|
|
|
wp_node->getChild("leg-course-error-nm", 0, true);
|
2004-05-01 09:40:09 +00:00
|
|
|
_leg_to_flag_node =
|
2004-10-16 12:37:39 +00:00
|
|
|
wp_node->getChild("leg-to-flag", 0, true);
|
2004-05-01 09:40:09 +00:00
|
|
|
_alt_deviation_node =
|
2004-10-16 12:37:39 +00:00
|
|
|
wp_node->getChild("alt-deviation-ft", 0, true);
|
|
|
|
|
|
|
|
_route = node->getChild("route", 0, true);
|
|
|
|
popWp = _route->getChild("Pop-WP", 0, true);
|
|
|
|
|
|
|
|
addWp->setBoolValue(false);
|
|
|
|
popWp->setBoolValue(false);
|
|
|
|
|
|
|
|
_serviceable_node->setBoolValue(true);
|
2003-03-10 14:09:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
GPS::update (double delta_time_sec)
|
|
|
|
{
|
|
|
|
// If it's off, don't bother.
|
|
|
|
if (!_serviceable_node->getBoolValue() ||
|
|
|
|
!_electrical_node->getBoolValue()) {
|
|
|
|
_last_valid = false;
|
|
|
|
_last_longitude_deg = 0;
|
|
|
|
_last_latitude_deg = 0;
|
|
|
|
_last_altitude_m = 0;
|
2004-03-15 19:23:39 +00:00
|
|
|
_last_speed_kts = 0;
|
2003-03-10 14:09:43 +00:00
|
|
|
_raim_node->setDoubleValue(false);
|
|
|
|
_indicated_longitude_node->setDoubleValue(0);
|
|
|
|
_indicated_latitude_node->setDoubleValue(0);
|
|
|
|
_indicated_altitude_node->setDoubleValue(0);
|
2004-05-01 09:40:09 +00:00
|
|
|
_indicated_vertical_speed_node->setDoubleValue(0);
|
2003-03-10 14:09:43 +00:00
|
|
|
_true_track_node->setDoubleValue(0);
|
|
|
|
_magnetic_track_node->setDoubleValue(0);
|
|
|
|
_speed_node->setDoubleValue(0);
|
2004-05-01 09:40:09 +00:00
|
|
|
_wp1_distance_node->setDoubleValue(0);
|
|
|
|
_wp1_bearing_node->setDoubleValue(0);
|
|
|
|
_wp1_longitude_node->setDoubleValue(0);
|
|
|
|
_wp1_latitude_node->setDoubleValue(0);
|
|
|
|
_wp1_course_node->setDoubleValue(0);
|
2004-03-15 19:23:39 +00:00
|
|
|
_odometer_node->setDoubleValue(0);
|
|
|
|
_trip_odometer_node->setDoubleValue(0);
|
2004-04-16 22:12:26 +00:00
|
|
|
_tracking_bug_node->setDoubleValue(0);
|
|
|
|
_true_bug_error_node->setDoubleValue(0);
|
|
|
|
_magnetic_bug_error_node->setDoubleValue(0);
|
2004-05-01 09:40:09 +00:00
|
|
|
_true_wp1_bearing_error_node->setDoubleValue(0);
|
|
|
|
_magnetic_wp1_bearing_error_node->setDoubleValue(0);
|
2003-03-10 14:09:43 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2004-04-16 22:12:26 +00:00
|
|
|
// Get the aircraft position
|
|
|
|
// TODO: Add noise and other errors.
|
2003-03-10 14:09:43 +00:00
|
|
|
double longitude_deg = _longitude_node->getDoubleValue();
|
|
|
|
double latitude_deg = _latitude_node->getDoubleValue();
|
|
|
|
double altitude_m = _altitude_node->getDoubleValue() * SG_FEET_TO_METER;
|
|
|
|
double magvar_deg = _magvar_node->getDoubleValue();
|
|
|
|
|
2004-05-01 09:40:09 +00:00
|
|
|
/*
|
|
|
|
|
|
|
|
// Bias and random error
|
|
|
|
double random_factor = sg_random();
|
|
|
|
double random_error = 1.4;
|
|
|
|
double error_radius = 5.1;
|
|
|
|
double bias_max_radius = 5.1;
|
|
|
|
double random_max_radius = 1.4;
|
|
|
|
|
|
|
|
bias_length += (random_factor-0.5) * 1.0e-3;
|
|
|
|
if (bias_length <= 0.0) bias_length = 0.0;
|
|
|
|
else if (bias_length >= bias_max_radius) bias_length = bias_max_radius;
|
|
|
|
bias_angle += (random_factor-0.5) * 1.0e-3;
|
|
|
|
if (bias_angle <= 0.0) bias_angle = 0.0;
|
|
|
|
else if (bias_angle >= 360.0) bias_angle = 360.0;
|
|
|
|
|
|
|
|
double random_length = random_factor * random_max_radius;
|
|
|
|
double random_angle = random_factor * 360.0;
|
|
|
|
|
|
|
|
double bias_x = bias_length * cos(bias_angle * SG_PI / 180.0);
|
|
|
|
double bias_y = bias_length * sin(bias_angle * SG_PI / 180.0);
|
|
|
|
double random_x = random_length * cos(random_angle * SG_PI / 180.0);
|
|
|
|
double random_y = random_length * sin(random_angle * SG_PI / 180.0);
|
|
|
|
double error_x = bias_x + random_x;
|
|
|
|
double error_y = bias_y + random_y;
|
|
|
|
double error_length = sqrt(error_x*error_x + error_y*error_y);
|
|
|
|
double error_angle = atan(error_y / error_x) * 180.0 / SG_PI;
|
|
|
|
|
|
|
|
double lat2;
|
|
|
|
double lon2;
|
|
|
|
double az2;
|
|
|
|
geo_direct_wgs_84 ( altitude_m, latitude_deg,
|
|
|
|
longitude_deg, error_angle,
|
|
|
|
error_length, &lat2, &lon2,
|
|
|
|
&az2 );
|
|
|
|
//cout << lat2 << " " << lon2 << endl;
|
|
|
|
printf("%f %f \n", bias_length, bias_angle);
|
|
|
|
printf("%3.7f %3.7f \n", lat2, lon2);
|
|
|
|
printf("%f %f \n", error_length, error_angle);
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
double speed_kt, vertical_speed_mpm;
|
2004-03-15 19:23:39 +00:00
|
|
|
|
2003-03-10 14:09:43 +00:00
|
|
|
_raim_node->setBoolValue(true);
|
|
|
|
_indicated_longitude_node->setDoubleValue(longitude_deg);
|
|
|
|
_indicated_latitude_node->setDoubleValue(latitude_deg);
|
|
|
|
_indicated_altitude_node->setDoubleValue(altitude_m * SG_METER_TO_FEET);
|
|
|
|
|
|
|
|
if (_last_valid) {
|
2004-04-16 22:12:26 +00:00
|
|
|
double track1_deg, track2_deg, distance_m, odometer, mag_track_bearing;
|
2003-03-10 14:09:43 +00:00
|
|
|
geo_inverse_wgs_84(altitude_m,
|
|
|
|
_last_latitude_deg, _last_longitude_deg,
|
|
|
|
latitude_deg, longitude_deg,
|
|
|
|
&track1_deg, &track2_deg, &distance_m);
|
2004-03-15 19:23:39 +00:00
|
|
|
speed_kt = ((distance_m * SG_METER_TO_NM) *
|
|
|
|
((1 / delta_time_sec) * 3600.0));
|
2004-05-01 09:40:09 +00:00
|
|
|
vertical_speed_mpm = ((altitude_m - _last_altitude_m) * 60 /
|
|
|
|
delta_time_sec);
|
|
|
|
_indicated_vertical_speed_node->setDoubleValue
|
|
|
|
(vertical_speed_mpm * SG_METER_TO_FEET);
|
2003-03-10 14:09:43 +00:00
|
|
|
_true_track_node->setDoubleValue(track1_deg);
|
2004-05-06 09:29:26 +00:00
|
|
|
mag_track_bearing = track1_deg - magvar_deg;
|
|
|
|
SG_NORMALIZE_RANGE(mag_track_bearing, 0.0, 360.0);
|
2004-04-16 22:12:26 +00:00
|
|
|
_magnetic_track_node->setDoubleValue(mag_track_bearing);
|
2004-03-15 19:23:39 +00:00
|
|
|
speed_kt = fgGetLowPass(_last_speed_kts, speed_kt, delta_time_sec/20.0);
|
|
|
|
_last_speed_kts = speed_kt;
|
2003-03-10 14:09:43 +00:00
|
|
|
_speed_node->setDoubleValue(speed_kt);
|
2004-03-15 19:23:39 +00:00
|
|
|
|
|
|
|
odometer = _odometer_node->getDoubleValue();
|
|
|
|
_odometer_node->setDoubleValue(odometer + distance_m * SG_METER_TO_NM);
|
|
|
|
odometer = _trip_odometer_node->getDoubleValue();
|
|
|
|
_trip_odometer_node->setDoubleValue(odometer + distance_m * SG_METER_TO_NM);
|
|
|
|
|
2004-05-01 09:40:09 +00:00
|
|
|
// Get waypoint 0 position
|
|
|
|
double wp0_longitude_deg = _wp0_longitude_node->getDoubleValue();
|
|
|
|
double wp0_latitude_deg = _wp0_latitude_node->getDoubleValue();
|
|
|
|
double wp0_altitude_m = _wp0_altitude_node->getDoubleValue()
|
|
|
|
* SG_FEET_TO_METER;
|
|
|
|
double wp0_course_deg = _wp0_course_node->getDoubleValue();
|
|
|
|
double wp0_distance, wp0_bearing_deg, wp0_course_deviation_deg,
|
|
|
|
wp0_course_error_m, wp0_TTW, wp0_bearing_error_deg;
|
|
|
|
string wp0_ID = _wp0_ID_node->getStringValue();
|
|
|
|
|
|
|
|
// Get waypoint 1 position
|
|
|
|
double wp1_longitude_deg = _wp1_longitude_node->getDoubleValue();
|
|
|
|
double wp1_latitude_deg = _wp1_latitude_node->getDoubleValue();
|
|
|
|
double wp1_altitude_m = _wp1_altitude_node->getDoubleValue()
|
|
|
|
* SG_FEET_TO_METER;
|
|
|
|
double wp1_course_deg = _wp1_course_node->getDoubleValue();
|
|
|
|
double wp1_distance, wp1_bearing_deg, wp1_course_deviation_deg,
|
|
|
|
wp1_course_error_m, wp1_TTW, wp1_bearing_error_deg;
|
|
|
|
string wp1_ID = _wp1_ID_node->getStringValue();
|
|
|
|
|
2004-03-15 19:23:39 +00:00
|
|
|
// If the get-nearest-airport-node is true.
|
2004-05-01 09:40:09 +00:00
|
|
|
// Get the nearest airport, and set it as waypoint 1.
|
2004-03-15 19:23:39 +00:00
|
|
|
if (_get_nearest_airport_node->getBoolValue()) {
|
2004-05-01 09:40:09 +00:00
|
|
|
FGAirport a;
|
|
|
|
//cout << "Airport found" << endl;
|
|
|
|
a = globals->get_airports()->search(longitude_deg, latitude_deg, false);
|
2005-02-10 09:01:51 +00:00
|
|
|
_wp1_ID_node->setStringValue(a.getId().c_str());
|
|
|
|
wp1_longitude_deg = a.getLongitude();
|
|
|
|
wp1_latitude_deg = a.getLatitude();
|
|
|
|
_wp1_name_node->setStringValue(a.getName().c_str());
|
2004-05-01 09:40:09 +00:00
|
|
|
_get_nearest_airport_node->setBoolValue(false);
|
2005-02-10 09:01:51 +00:00
|
|
|
_last_wp1_ID = wp1_ID = a.getId().c_str();
|
2004-03-15 19:23:39 +00:00
|
|
|
}
|
2004-05-01 09:40:09 +00:00
|
|
|
|
|
|
|
// If the waypoint 0 ID has changed, try to find the new ID
|
2004-03-15 19:23:39 +00:00
|
|
|
// in the airport-, fix-, nav-database.
|
2004-05-01 09:40:09 +00:00
|
|
|
if ( !(_last_wp0_ID == wp0_ID) ) {
|
|
|
|
string waypont_type =
|
|
|
|
_wp0_waypoint_type_node->getStringValue();
|
|
|
|
if (waypont_type == "airport") {
|
|
|
|
FGAirport a;
|
|
|
|
a = globals->get_airports()->search( wp0_ID );
|
2005-02-10 09:01:51 +00:00
|
|
|
if ( a.getId() == wp0_ID ) {
|
2004-05-01 09:40:09 +00:00
|
|
|
//cout << "Airport found" << endl;
|
2005-02-10 09:01:51 +00:00
|
|
|
wp0_longitude_deg = a.getLongitude();
|
|
|
|
wp0_latitude_deg = a.getLatitude();
|
|
|
|
_wp0_name_node->setStringValue(a.getName().c_str());
|
2004-05-01 09:40:09 +00:00
|
|
|
}
|
2004-03-15 19:23:39 +00:00
|
|
|
}
|
2004-05-01 09:40:09 +00:00
|
|
|
else if (waypont_type == "nav") {
|
2004-05-28 05:24:54 +00:00
|
|
|
FGNavRecord *n
|
|
|
|
= globals->get_navlist()->findByIdent(wp0_ID.c_str(),
|
|
|
|
longitude_deg,
|
|
|
|
latitude_deg);
|
|
|
|
if ( n != NULL ) {
|
2004-05-01 09:40:09 +00:00
|
|
|
//cout << "Nav found" << endl;
|
|
|
|
wp0_longitude_deg = n->get_lon();
|
|
|
|
wp0_latitude_deg = n->get_lat();
|
|
|
|
_wp0_name_node->setStringValue(n->get_name().c_str());
|
|
|
|
}
|
2004-03-15 19:23:39 +00:00
|
|
|
}
|
2004-05-01 09:40:09 +00:00
|
|
|
else if (waypont_type == "fix") {
|
|
|
|
FGFix f;
|
2004-05-26 18:15:19 +00:00
|
|
|
if ( globals->get_fixlist()->query(wp0_ID, &f) ) {
|
2004-05-01 09:40:09 +00:00
|
|
|
//cout << "Fix found" << endl;
|
|
|
|
wp0_longitude_deg = f.get_lon();
|
|
|
|
wp0_latitude_deg = f.get_lat();
|
|
|
|
_wp0_name_node->setStringValue(wp0_ID.c_str());
|
|
|
|
}
|
2004-03-15 19:23:39 +00:00
|
|
|
}
|
2004-05-01 09:40:09 +00:00
|
|
|
_last_wp0_ID = wp0_ID;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If the waypoint 1 ID has changed, try to find the new ID
|
|
|
|
// in the airport-, fix-, nav-database.
|
|
|
|
if ( !(_last_wp1_ID == wp1_ID) ) {
|
|
|
|
string waypont_type =
|
|
|
|
_wp1_waypoint_type_node->getStringValue();
|
|
|
|
if (waypont_type == "airport") {
|
|
|
|
FGAirport a;
|
|
|
|
a = globals->get_airports()->search( wp1_ID );
|
2005-02-10 09:01:51 +00:00
|
|
|
if ( a.getId() == wp1_ID ) {
|
2004-05-01 09:40:09 +00:00
|
|
|
//cout << "Airport found" << endl;
|
2005-02-10 09:01:51 +00:00
|
|
|
wp1_longitude_deg = a.getLongitude();
|
|
|
|
wp1_latitude_deg = a.getLatitude();
|
|
|
|
_wp1_name_node->setStringValue(a.getName().c_str());
|
2004-05-01 09:40:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (waypont_type == "nav") {
|
2004-05-28 05:24:54 +00:00
|
|
|
FGNavRecord *n
|
|
|
|
= globals->get_navlist()->findByIdent(wp1_ID.c_str(),
|
|
|
|
longitude_deg,
|
|
|
|
latitude_deg);
|
|
|
|
if ( n != NULL ) {
|
2004-05-01 09:40:09 +00:00
|
|
|
//cout << "Nav found" << endl;
|
|
|
|
wp1_longitude_deg = n->get_lon();
|
|
|
|
wp1_latitude_deg = n->get_lat();
|
|
|
|
_wp1_name_node->setStringValue(n->get_name().c_str());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (waypont_type == "fix") {
|
|
|
|
FGFix f;
|
2004-05-26 18:15:19 +00:00
|
|
|
if ( globals->get_fixlist()->query(wp1_ID, &f) ) {
|
2004-05-01 09:40:09 +00:00
|
|
|
//cout << "Fix found" << endl;
|
|
|
|
wp1_longitude_deg = f.get_lon();
|
|
|
|
wp1_latitude_deg = f.get_lat();
|
|
|
|
_wp1_name_node->setStringValue(wp1_ID.c_str());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_last_wp1_ID = wp1_ID;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// If any of the two waypoints have changed
|
|
|
|
// we need to calculate a new course between them,
|
|
|
|
// and values for vertical navigation.
|
|
|
|
if ( wp0_longitude_deg != _wp0_longitude_deg ||
|
|
|
|
wp0_latitude_deg != _wp0_latitude_deg ||
|
|
|
|
wp0_altitude_m != _wp0_altitude_m ||
|
|
|
|
wp1_longitude_deg != _wp1_longitude_deg ||
|
|
|
|
wp1_latitude_deg != _wp1_latitude_deg ||
|
|
|
|
wp1_altitude_m != _wp1_altitude_m )
|
|
|
|
{
|
|
|
|
// Update the global variables
|
|
|
|
_wp0_longitude_deg = wp0_longitude_deg;
|
|
|
|
_wp0_latitude_deg = wp0_latitude_deg;
|
|
|
|
_wp0_altitude_m = wp0_altitude_m;
|
|
|
|
_wp1_longitude_deg = wp1_longitude_deg;
|
|
|
|
_wp1_latitude_deg = wp1_latitude_deg;
|
|
|
|
_wp1_altitude_m = wp1_altitude_m;
|
|
|
|
|
|
|
|
// Get the course and distance from wp0 to wp1
|
|
|
|
SGWayPoint wp0(wp0_longitude_deg,
|
|
|
|
wp0_latitude_deg, wp0_altitude_m);
|
|
|
|
SGWayPoint wp1(wp1_longitude_deg,
|
|
|
|
wp1_latitude_deg, wp1_altitude_m);
|
|
|
|
|
|
|
|
wp1.CourseAndDistance(wp0, &_course_deg, &_distance_m);
|
2004-05-06 09:29:26 +00:00
|
|
|
double leg_mag_course = _course_deg - magvar_deg;
|
|
|
|
SG_NORMALIZE_RANGE(leg_mag_course, 0.0, 360.0);
|
2004-05-01 09:40:09 +00:00
|
|
|
|
|
|
|
// Get the altitude / distance ratio
|
|
|
|
if ( distance_m > 0.0 ) {
|
|
|
|
double alt_difference_m = wp0_altitude_m - wp1_altitude_m;
|
|
|
|
_alt_dist_ratio = alt_difference_m / _distance_m;
|
|
|
|
}
|
|
|
|
|
2004-05-06 09:29:26 +00:00
|
|
|
_leg_distance_node->setDoubleValue(_distance_m * SG_METER_TO_NM);
|
2004-05-01 09:40:09 +00:00
|
|
|
_leg_course_node->setDoubleValue(_course_deg);
|
2004-05-06 09:29:26 +00:00
|
|
|
_leg_magnetic_course_node->setDoubleValue(leg_mag_course);
|
2004-05-01 09:40:09 +00:00
|
|
|
_alt_dist_ratio_node->setDoubleValue(_alt_dist_ratio);
|
2004-05-06 09:29:26 +00:00
|
|
|
|
|
|
|
_wp0_longitude_node->setDoubleValue(wp0_longitude_deg);
|
|
|
|
_wp0_latitude_node->setDoubleValue(wp0_latitude_deg);
|
|
|
|
_wp1_longitude_node->setDoubleValue(wp1_longitude_deg);
|
|
|
|
_wp1_latitude_node->setDoubleValue(wp1_latitude_deg);
|
2004-03-15 19:23:39 +00:00
|
|
|
}
|
|
|
|
|
2004-05-01 09:40:09 +00:00
|
|
|
|
|
|
|
// Find the bearing and distance to waypoint 0.
|
|
|
|
SGWayPoint wp0(wp0_longitude_deg, wp0_latitude_deg, wp0_altitude_m);
|
|
|
|
wp0.CourseAndDistance(longitude_deg, latitude_deg, altitude_m,
|
|
|
|
&wp0_bearing_deg, &wp0_distance);
|
|
|
|
_wp0_distance_node->setDoubleValue(wp0_distance * SG_METER_TO_NM);
|
|
|
|
_wp0_bearing_node->setDoubleValue(wp0_bearing_deg);
|
2004-05-06 09:29:26 +00:00
|
|
|
double wp0_mag_bearing_deg = wp0_bearing_deg - magvar_deg;
|
|
|
|
SG_NORMALIZE_RANGE(wp0_mag_bearing_deg, 0.0, 360.0);
|
2004-05-01 09:40:09 +00:00
|
|
|
_wp0_mag_bearing_node->setDoubleValue(wp0_mag_bearing_deg);
|
2004-05-06 09:29:26 +00:00
|
|
|
wp0_bearing_error_deg = track1_deg - wp0_bearing_deg;
|
|
|
|
SG_NORMALIZE_RANGE(wp0_bearing_error_deg, -180.0, 180.0);
|
2004-05-01 09:40:09 +00:00
|
|
|
_true_wp0_bearing_error_node->setDoubleValue(wp0_bearing_error_deg);
|
2004-03-15 19:23:39 +00:00
|
|
|
|
2004-05-01 09:40:09 +00:00
|
|
|
// Estimate time to waypoint 0.
|
2004-03-15 19:23:39 +00:00
|
|
|
// The estimation does not take track into consideration,
|
|
|
|
// so if you are going away from the waypoint the TTW will
|
|
|
|
// increase. Makes most sense when travelling directly towards
|
|
|
|
// the waypoint.
|
2004-05-01 09:40:09 +00:00
|
|
|
if (speed_kt > 0.0 && wp0_distance > 0.0) {
|
|
|
|
wp0_TTW = (wp0_distance * SG_METER_TO_NM) / (speed_kt / 3600);
|
2004-03-15 19:23:39 +00:00
|
|
|
}
|
|
|
|
else {
|
2004-05-01 09:40:09 +00:00
|
|
|
wp0_TTW = 0.0;
|
2004-03-15 19:23:39 +00:00
|
|
|
}
|
2004-05-01 09:40:09 +00:00
|
|
|
unsigned int wp0_TTW_seconds = (int) (wp0_TTW + 0.5);
|
|
|
|
if (wp0_TTW_seconds < 356400) { // That's 99 hours
|
|
|
|
unsigned int wp0_TTW_minutes = 0;
|
|
|
|
unsigned int wp0_TTW_hours = 0;
|
|
|
|
char wp0_TTW_str[9];
|
|
|
|
while (wp0_TTW_seconds >= 3600) {
|
|
|
|
wp0_TTW_seconds -= 3600;
|
|
|
|
wp0_TTW_hours++;
|
2004-03-15 19:23:39 +00:00
|
|
|
}
|
2004-05-01 09:40:09 +00:00
|
|
|
while (wp0_TTW_seconds >= 60) {
|
|
|
|
wp0_TTW_seconds -= 60;
|
|
|
|
wp0_TTW_minutes++;
|
2004-03-15 19:23:39 +00:00
|
|
|
}
|
2004-05-06 09:29:26 +00:00
|
|
|
snprintf(wp0_TTW_str, 9, "%02d:%02d:%02d",
|
2004-05-01 09:40:09 +00:00
|
|
|
wp0_TTW_hours, wp0_TTW_minutes, wp0_TTW_seconds);
|
|
|
|
_wp0_ttw_node->setStringValue(wp0_TTW_str);
|
2004-03-15 19:23:39 +00:00
|
|
|
}
|
|
|
|
else
|
2004-05-01 09:40:09 +00:00
|
|
|
_wp0_ttw_node->setStringValue("--:--:--");
|
2004-03-15 19:23:39 +00:00
|
|
|
|
|
|
|
// Course deviation is the diffenrence between the bearing
|
|
|
|
// and the course.
|
2004-05-01 09:40:09 +00:00
|
|
|
wp0_course_deviation_deg = wp0_bearing_deg -
|
2004-05-06 09:29:26 +00:00
|
|
|
wp0_course_deg;
|
|
|
|
SG_NORMALIZE_RANGE(wp0_course_deviation_deg, -180.0, 180.0);
|
2004-03-15 19:23:39 +00:00
|
|
|
|
|
|
|
// If the course deviation is less than 90 degrees to either side,
|
|
|
|
// our desired course is towards the waypoint.
|
2004-05-01 09:40:09 +00:00
|
|
|
// It does not matter if we are actually moving
|
|
|
|
// towards or from the waypoint.
|
|
|
|
if (fabs(wp0_course_deviation_deg) < 90.0) {
|
|
|
|
_wp0_to_flag_node->setBoolValue(true); }
|
|
|
|
// If it's more than 90 degrees the desired
|
|
|
|
// course is from the waypoint.
|
|
|
|
else if (fabs(wp0_course_deviation_deg) > 90.0) {
|
|
|
|
_wp0_to_flag_node->setBoolValue(false);
|
2004-03-15 19:23:39 +00:00
|
|
|
// When the course is away from the waypoint,
|
|
|
|
// it makes sense to change the sign of the deviation.
|
2004-05-01 09:40:09 +00:00
|
|
|
wp0_course_deviation_deg *= -1.0;
|
2004-05-06 09:29:26 +00:00
|
|
|
SG_NORMALIZE_RANGE(wp0_course_deviation_deg, -90.0, 90.0);
|
2004-05-01 09:40:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
_wp0_course_deviation_node->setDoubleValue(wp0_course_deviation_deg);
|
|
|
|
|
|
|
|
// Cross track error.
|
2004-05-06 09:29:26 +00:00
|
|
|
wp0_course_error_m = sin(wp0_course_deviation_deg * SG_PI / 180.0)
|
2004-05-01 09:40:09 +00:00
|
|
|
* (wp0_distance);
|
|
|
|
_wp0_course_error_nm_node->setDoubleValue(wp0_course_error_m
|
|
|
|
* SG_METER_TO_NM);
|
|
|
|
|
2004-03-15 19:23:39 +00:00
|
|
|
|
2004-05-01 09:40:09 +00:00
|
|
|
|
|
|
|
// Find the bearing and distance to waypoint 1.
|
|
|
|
SGWayPoint wp1(wp1_longitude_deg, wp1_latitude_deg, wp1_altitude_m);
|
|
|
|
wp1.CourseAndDistance(longitude_deg, latitude_deg, altitude_m,
|
|
|
|
&wp1_bearing_deg, &wp1_distance);
|
|
|
|
_wp1_distance_node->setDoubleValue(wp1_distance * SG_METER_TO_NM);
|
|
|
|
_wp1_bearing_node->setDoubleValue(wp1_bearing_deg);
|
2004-05-06 09:29:26 +00:00
|
|
|
double wp1_mag_bearing_deg = wp1_bearing_deg - magvar_deg;
|
|
|
|
SG_NORMALIZE_RANGE(wp1_mag_bearing_deg, 0.0, 360.0);
|
2004-05-01 09:40:09 +00:00
|
|
|
_wp1_mag_bearing_node->setDoubleValue(wp1_mag_bearing_deg);
|
2004-05-06 09:29:26 +00:00
|
|
|
wp1_bearing_error_deg = track1_deg - wp1_bearing_deg;
|
|
|
|
SG_NORMALIZE_RANGE(wp1_bearing_error_deg, -180.0, 180.0);
|
2004-05-01 09:40:09 +00:00
|
|
|
_true_wp1_bearing_error_node->setDoubleValue(wp1_bearing_error_deg);
|
|
|
|
|
|
|
|
// Estimate time to waypoint 1.
|
|
|
|
// The estimation does not take track into consideration,
|
|
|
|
// so if you are going away from the waypoint the TTW will
|
|
|
|
// increase. Makes most sense when travelling directly towards
|
|
|
|
// the waypoint.
|
|
|
|
if (speed_kt > 0.0 && wp1_distance > 0.0) {
|
|
|
|
wp1_TTW = (wp1_distance * SG_METER_TO_NM) / (speed_kt / 3600);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
wp1_TTW = 0.0;
|
|
|
|
}
|
|
|
|
unsigned int wp1_TTW_seconds = (int) (wp1_TTW + 0.5);
|
|
|
|
if (wp1_TTW_seconds < 356400) { // That's 99 hours
|
|
|
|
unsigned int wp1_TTW_minutes = 0;
|
|
|
|
unsigned int wp1_TTW_hours = 0;
|
|
|
|
char wp1_TTW_str[9];
|
|
|
|
while (wp1_TTW_seconds >= 3600) {
|
|
|
|
wp1_TTW_seconds -= 3600;
|
|
|
|
wp1_TTW_hours++;
|
|
|
|
}
|
|
|
|
while (wp1_TTW_seconds >= 60) {
|
|
|
|
wp1_TTW_seconds -= 60;
|
|
|
|
wp1_TTW_minutes++;
|
|
|
|
}
|
2004-05-06 09:29:26 +00:00
|
|
|
snprintf(wp1_TTW_str, 9, "%02d:%02d:%02d",
|
2004-05-01 09:40:09 +00:00
|
|
|
wp1_TTW_hours, wp1_TTW_minutes, wp1_TTW_seconds);
|
|
|
|
_wp1_ttw_node->setStringValue(wp1_TTW_str);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
_wp1_ttw_node->setStringValue("--:--:--");
|
|
|
|
|
|
|
|
// Course deviation is the diffenrence between the bearing
|
|
|
|
// and the course.
|
2004-05-06 09:29:26 +00:00
|
|
|
wp1_course_deviation_deg = wp1_bearing_deg - wp1_course_deg;
|
|
|
|
SG_NORMALIZE_RANGE(wp1_course_deviation_deg, -180.0, 180.0);
|
2004-05-01 09:40:09 +00:00
|
|
|
|
|
|
|
// If the course deviation is less than 90 degrees to either side,
|
|
|
|
// our desired course is towards the waypoint.
|
|
|
|
// It does not matter if we are actually moving
|
|
|
|
// towards or from the waypoint.
|
|
|
|
if (fabs(wp1_course_deviation_deg) < 90.0) {
|
|
|
|
_wp1_to_flag_node->setBoolValue(true); }
|
|
|
|
// If it's more than 90 degrees the desired
|
|
|
|
// course is from the waypoint.
|
|
|
|
else if (fabs(wp1_course_deviation_deg) > 90.0) {
|
|
|
|
_wp1_to_flag_node->setBoolValue(false);
|
|
|
|
// When the course is away from the waypoint,
|
|
|
|
// it makes sense to change the sign of the deviation.
|
|
|
|
wp1_course_deviation_deg *= -1.0;
|
2004-05-06 09:29:26 +00:00
|
|
|
SG_NORMALIZE_RANGE(wp1_course_deviation_deg, -90.0, 90.0);
|
2004-05-01 09:40:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
_wp1_course_deviation_node->setDoubleValue(wp1_course_deviation_deg);
|
2004-03-15 19:23:39 +00:00
|
|
|
|
|
|
|
// Cross track error.
|
2004-05-01 09:40:09 +00:00
|
|
|
wp1_course_error_m = sin(wp1_course_deviation_deg * SG_PI / 180.0)
|
|
|
|
* (wp1_distance);
|
|
|
|
_wp1_course_error_nm_node->setDoubleValue(wp1_course_error_m
|
2004-03-15 19:23:39 +00:00
|
|
|
* SG_METER_TO_NM);
|
|
|
|
|
2004-05-01 09:40:09 +00:00
|
|
|
|
|
|
|
// Leg course deviation is the diffenrence between the bearing
|
|
|
|
// and the course.
|
|
|
|
double course_deviation_deg = wp1_bearing_deg - _course_deg;
|
2004-05-06 09:29:26 +00:00
|
|
|
SG_NORMALIZE_RANGE(course_deviation_deg, -180.0, 180.0);
|
2004-05-01 09:40:09 +00:00
|
|
|
|
|
|
|
// If the course deviation is less than 90 degrees to either side,
|
|
|
|
// our desired course is towards the waypoint.
|
|
|
|
// It does not matter if we are actually moving
|
|
|
|
// towards or from the waypoint.
|
|
|
|
if (fabs(course_deviation_deg) < 90.0) {
|
|
|
|
_leg_to_flag_node->setBoolValue(true); }
|
|
|
|
// If it's more than 90 degrees the desired
|
|
|
|
// course is from the waypoint.
|
|
|
|
else if (fabs(course_deviation_deg) > 90.0) {
|
|
|
|
_leg_to_flag_node->setBoolValue(false);
|
|
|
|
// When the course is away from the waypoint,
|
|
|
|
// it makes sense to change the sign of the deviation.
|
|
|
|
course_deviation_deg *= -1.0;
|
2004-05-06 09:29:26 +00:00
|
|
|
SG_NORMALIZE_RANGE(course_deviation_deg, -90.0, 90.0);
|
2004-05-01 09:40:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
_leg_course_deviation_node->setDoubleValue(course_deviation_deg);
|
|
|
|
|
|
|
|
// Cross track error.
|
|
|
|
double course_error_m = sin(course_deviation_deg * SG_PI / 180.0)
|
|
|
|
* (_distance_m);
|
|
|
|
_leg_course_error_nm_node->setDoubleValue(course_error_m * SG_METER_TO_NM);
|
|
|
|
|
|
|
|
// Altitude deviation
|
|
|
|
double desired_altitude_m = wp1_altitude_m
|
|
|
|
+ wp1_distance * _alt_dist_ratio;
|
|
|
|
double altitude_deviation_m = altitude_m - desired_altitude_m;
|
|
|
|
_alt_deviation_node->setDoubleValue(altitude_deviation_m * SG_METER_TO_FEET);
|
|
|
|
|
|
|
|
|
|
|
|
|
2004-04-16 22:12:26 +00:00
|
|
|
// Tracking bug.
|
|
|
|
double tracking_bug = _tracking_bug_node->getDoubleValue();
|
|
|
|
double true_bug_error = tracking_bug - track1_deg;
|
|
|
|
double magnetic_bug_error = tracking_bug - mag_track_bearing;
|
|
|
|
|
2004-05-06 09:29:26 +00:00
|
|
|
// Get the errors into the (-180,180) range.
|
|
|
|
SG_NORMALIZE_RANGE(true_bug_error, -180.0, 180.0);
|
|
|
|
SG_NORMALIZE_RANGE(magnetic_bug_error, -180.0, 180.0);
|
2004-04-16 22:12:26 +00:00
|
|
|
|
|
|
|
_true_bug_error_node->setDoubleValue(true_bug_error);
|
|
|
|
_magnetic_bug_error_node->setDoubleValue(magnetic_bug_error);
|
|
|
|
|
2004-10-16 12:37:39 +00:00
|
|
|
|
|
|
|
// Add WP 1 to the route.
|
|
|
|
if ( addWp->getBoolValue() )
|
|
|
|
{
|
|
|
|
addWp->setBoolValue(false);
|
|
|
|
|
|
|
|
SGWayPoint tempWp( _wp1_longitude_node->getDoubleValue(),
|
|
|
|
_wp1_latitude_node->getDoubleValue(),
|
|
|
|
_wp1_altitude_node->getDoubleValue(),
|
|
|
|
SGWayPoint::WGS84,
|
|
|
|
_wp1_ID_node->getStringValue(),
|
|
|
|
_wp1_name_node->getStringValue() );
|
|
|
|
|
|
|
|
route->add_waypoint(tempWp);
|
|
|
|
|
|
|
|
SGPropertyNode *wp =
|
|
|
|
_route->getChild("Waypoint", route->size()-1, true);
|
|
|
|
SGPropertyNode *id = wp->getChild("ID", 0, true);
|
|
|
|
SGPropertyNode *name = wp->getChild("Name", 0, true);
|
|
|
|
SGPropertyNode *lat = wp->getChild("Latitude", 0, true);
|
|
|
|
SGPropertyNode *lon = wp->getChild("Longitude", 0, true);
|
|
|
|
SGPropertyNode *alt = wp->getChild("Altitude", 0, true);
|
|
|
|
|
|
|
|
id->setStringValue( tempWp.get_id().c_str() );
|
|
|
|
name->setStringValue( tempWp.get_name().c_str() );
|
|
|
|
lat->setDoubleValue( tempWp.get_target_lat() );
|
|
|
|
lon->setDoubleValue( tempWp.get_target_lon() );
|
|
|
|
alt->setDoubleValue( tempWp.get_target_alt() );
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( popWp->getBoolValue() )
|
|
|
|
{
|
|
|
|
popWp->setBoolValue(false);
|
|
|
|
|
|
|
|
route->delete_first();
|
2005-06-30 20:08:02 +00:00
|
|
|
_route->removeChild("Waypoint", 0, false);
|
2004-10-16 12:37:39 +00:00
|
|
|
}
|
|
|
|
|
2003-03-10 14:09:43 +00:00
|
|
|
} else {
|
2004-03-15 19:23:39 +00:00
|
|
|
_true_track_node->setDoubleValue(0.0);
|
|
|
|
_magnetic_track_node->setDoubleValue(0.0);
|
|
|
|
_speed_node->setDoubleValue(0.0);
|
2003-03-10 14:09:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
_last_valid = true;
|
|
|
|
_last_longitude_deg = longitude_deg;
|
|
|
|
_last_latitude_deg = latitude_deg;
|
|
|
|
_last_altitude_m = altitude_m;
|
|
|
|
}
|
|
|
|
|
|
|
|
// end of gps.cxx
|