Fix altitude units error loading plans, spotted by Csaba Halasz (Jester).
This commit is contained in:
parent
f11572cd64
commit
7bb785c72c
1 changed files with 5 additions and 5 deletions
|
@ -709,16 +709,16 @@ void FGRouteMgr::parseRouteWaypoint(SGPropertyNode* aWP)
|
|||
}
|
||||
|
||||
SGPropertyNode_ptr altProp = aWP->getChild("altitude-ft");
|
||||
double alt = cruise->getDoubleValue("altitude-ft") * SG_FEET_TO_METER;
|
||||
double altM = cruise->getDoubleValue("altitude-ft") * SG_FEET_TO_METER;
|
||||
if (altProp) {
|
||||
alt = altProp->getDoubleValue();
|
||||
altM = altProp->getDoubleValue() * SG_FEET_TO_METER;
|
||||
}
|
||||
|
||||
string ident(aWP->getStringValue("ident"));
|
||||
if (aWP->hasChild("longitude-deg")) {
|
||||
// explicit longitude/latitude
|
||||
SGWayPoint swp(aWP->getDoubleValue("longitude-deg"),
|
||||
aWP->getDoubleValue("latitude-deg"), alt,
|
||||
aWP->getDoubleValue("latitude-deg"), altM,
|
||||
SGWayPoint::WGS84, ident, aWP->getStringValue("name"));
|
||||
add_waypoint(swp);
|
||||
} else if (aWP->hasChild("navid")) {
|
||||
|
@ -739,7 +739,7 @@ void FGRouteMgr::parseRouteWaypoint(SGPropertyNode* aWP)
|
|||
SGGeodesy::direct(p->geod(), radialDeg, offsetNm * SG_NM_TO_METER, pos, az2);
|
||||
}
|
||||
|
||||
SGWayPoint swp(pos.getLongitudeDeg(), pos.getLatitudeDeg(), alt,
|
||||
SGWayPoint swp(pos.getLongitudeDeg(), pos.getLatitudeDeg(), altM,
|
||||
SGWayPoint::WGS84, ident, "");
|
||||
add_waypoint(swp);
|
||||
} else {
|
||||
|
@ -749,7 +749,7 @@ void FGRouteMgr::parseRouteWaypoint(SGPropertyNode* aWP)
|
|||
throw sg_io_exception("bad route file, unknown waypoint:" + ident);
|
||||
}
|
||||
|
||||
SGWayPoint swp(p->longitude(), p->latitude(), alt,
|
||||
SGWayPoint swp(p->longitude(), p->latitude(), altM,
|
||||
SGWayPoint::WGS84, p->ident(), p->name());
|
||||
add_waypoint(swp);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue