Fix runway elevations when threshold.xml is used.
SGGeodesy::direct doesn't preserve elevations, oops.
This commit is contained in:
parent
f48ad2f20b
commit
f3dec6a64d
2 changed files with 8 additions and 12 deletions
|
@ -61,18 +61,15 @@ FGRunwayBase::FGRunwayBase(PositionedID aGuid, Type aTy, const string& aIdent,
|
|||
|
||||
SGGeod FGRunwayBase::pointOnCenterline(double aOffset) const
|
||||
{
|
||||
SGGeod result;
|
||||
double dummyAz2;
|
||||
double halfLengthMetres = lengthM() * 0.5;
|
||||
|
||||
SGGeodesy::direct(mPosition, _heading,
|
||||
aOffset - halfLengthMetres,
|
||||
result, dummyAz2);
|
||||
SGGeod result = SGGeodesy::direct(mPosition, _heading,
|
||||
aOffset - halfLengthMetres);
|
||||
result.setElevationM(mPosition.getElevationM());
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
|
||||
|
||||
SGGeod FGRunwayBase::pointOffCenterline(double aOffset, double lateralOffset) const
|
||||
{
|
||||
SGGeod result;
|
||||
|
|
|
@ -1562,9 +1562,8 @@ void NavDataCache::updateRunwayThreshold(PositionedID runwayID, const SGGeod &aT
|
|||
|
||||
// compute the new runway center, based on the threshold lat/lon and length,
|
||||
double offsetFt = (0.5 * d->runwayLengthFt(runwayID));
|
||||
SGGeod newCenter;
|
||||
double dummy;
|
||||
SGGeodesy::direct(aThreshold, aHeading, offsetFt * SG_FEET_TO_METER, newCenter, dummy);
|
||||
SGGeod newCenter= SGGeodesy::direct(aThreshold, aHeading, offsetFt * SG_FEET_TO_METER);
|
||||
newCenter.setElevationM(aThreshold.getElevationM());
|
||||
|
||||
// now update the positional data
|
||||
updatePosition(runwayID, newCenter);
|
||||
|
|
Loading…
Reference in a new issue