X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FNavaids%2Fnavrecord.cxx;h=5edc64ef180c2babd21b71e19b06eb617eea3de3;hb=cd20c6073c8f4341d0f82070abae14b765cc8630;hp=c2ab0e9a7706df98c2b24cae498f69ffa10ca41a;hpb=050221c30697d5abc9658f5b626418286895c16b;p=flightgear.git diff --git a/src/Navaids/navrecord.cxx b/src/Navaids/navrecord.cxx index c2ab0e9a7..5edc64ef1 100644 --- a/src/Navaids/navrecord.cxx +++ b/src/Navaids/navrecord.cxx @@ -27,13 +27,21 @@ #include #include +#include #include #include +#include +#include -#include "Navaids/navrecord.hxx" -#include "Navaids/navdb.hxx" -#include "Airports/runways.hxx" -#include "Main/fg_props.hxx" + +#include +#include +#include +#include +#include + +#include
+#include FGNavRecord::FGNavRecord(Type aTy, const std::string& aIdent, const std::string& aName, const SGGeod& aPos, @@ -43,6 +51,7 @@ FGNavRecord::FGNavRecord(Type aTy, const std::string& aIdent, range(aRange), multiuse(aMultiuse), _name(aName), + mRunway(NULL), serviceable(true), trans_ident(aIdent) { @@ -74,6 +83,7 @@ FGNavRecord::FGNavRecord(Type aTy, const std::string& aIdent, } } + init(true); // init FGPositioned (now position is adjusted) } void FGNavRecord::initAirportRelation() @@ -82,10 +92,25 @@ void FGNavRecord::initAirportRelation() return; // not airport-located } - FGRunway* runway = getRunwayFromName(_name); + mRunway = getRunwayFromName(_name); + if (!mRunway) { + return; + } + + if (type() != GS) { + SGPropertyNode* ilsData = ilsDataForRunwayAndNavaid(mRunway, ident()); + if (ilsData) { + processSceneryILS(ilsData); + } + } + // fudge elevation to the runway elevation if it's not specified if (fabs(elevation()) < 0.01) { - mPosition.setElevationFt(runway->elevation()); + mPosition.setElevationFt(mRunway->elevation()); + } + + if (type() == ILS || type() == LOC) { + mRunway->setILS(this); } // align localizers with their runway @@ -96,38 +121,80 @@ void FGNavRecord::initAirportRelation() double threshold = fgGetDouble( "/sim/navdb/localizers/auto-align-threshold-deg", 5.0 ); - alignLocaliserWithRunway(runway, threshold); + alignLocaliserWithRunway(threshold); } } -void FGNavRecord::alignLocaliserWithRunway(FGRunway* aRunway, double aThreshold) +void FGNavRecord::processSceneryILS(SGPropertyNode* aILSNode) +{ + double hdgDeg = aILSNode->getDoubleValue("hdg-deg"), + lon = aILSNode->getDoubleValue("lon"), + lat = aILSNode->getDoubleValue("lat"), + elevM = aILSNode->getDoubleValue("elev-m"); + + mPosition = SGGeod::fromDegM(lon, lat, elevM); + multiuse = hdgDeg; +} + +void FGNavRecord::alignLocaliserWithRunway(double aThreshold) { // find the distance from the threshold to the localizer - SGGeod runwayThreshold(aRunway->threshold()); - double dist, az1, az2; - SGGeodesy::inverse(mPosition, runwayThreshold, az1, az2, dist); + double dist = SGGeodesy::distanceM(mPosition, mRunway->threshold()); // back project that distance along the runway center line - SGGeod newPos = aRunway->pointOnCenterline(dist); - - double hdg_diff = get_multiuse() - aRunway->headingDeg(); + SGGeod newPos = mRunway->pointOnCenterline(dist); - // clamp to [-180.0 ... 180.0] - if ( hdg_diff < -180.0 ) { - hdg_diff += 360.0; - } else if ( hdg_diff > 180.0 ) { - hdg_diff -= 360.0; - } + double hdg_diff = get_multiuse() - mRunway->headingDeg(); + SG_NORMALIZE_RANGE(hdg_diff, -180.0, 180.0); if ( fabs(hdg_diff) <= aThreshold ) { - mPosition = newPos; - set_multiuse( aRunway->headingDeg() ); + mPosition = SGGeod::fromGeodFt(newPos, mPosition.getElevationFt()); + set_multiuse( mRunway->headingDeg() ); } else { - SG_LOG(SG_GENERAL, SG_WARN, "localizer:" << ident() << ", aligning with runway " - << aRunway->ident() << " exceeded heading threshold"); + SG_LOG(SG_GENERAL, SG_DEBUG, "localizer:" << ident() << ", aligning with runway " + << mRunway->ident() << " exceeded heading threshold"); } } +double FGNavRecord::localizerWidth() const +{ + if (!mRunway) { + return 6.0; + } + + SGVec3d thresholdCart(SGVec3d::fromGeod(mRunway->threshold())); + double axisLength = dist(cart(), thresholdCart); + double landingLength = dist(thresholdCart, SGVec3d::fromGeod(mRunway->end())); + +// Reference: http://dcaa.slv.dk:8000/icaodocs/ +// ICAO standard width at threshold is 210 m = 689 feet = approx 700 feet. +// ICAO 3.1.1 half course = DDM = 0.0775 +// ICAO 3.1.3.7.1 Sensitivity 0.00145 DDM/m at threshold +// implies peg-to-peg of 214 m ... we will stick with 210. +// ICAO 3.1.3.7.1 "Course sector angle shall not exceed 6 degrees." + +// Very short runway: less than 1200 m (4000 ft) landing length: + if (landingLength < 1200.0) { +// ICAO fudges localizer sensitivity for very short runways. +// This produces a non-monotonic sensitivity-versus length relation. + axisLength += 1050.0; + } + +// Example: very short: San Diego KMYF (Montgomery Field) ILS RWY 28R +// Example: short: Tom's River KMJX (Robert J. Miller) ILS RWY 6 +// Example: very long: Denver KDEN (Denver) ILS RWY 16R + double raw_width = 210.0 / axisLength * SGD_RADIANS_TO_DEGREES; + return raw_width < 6.0? raw_width : 6.0; + +} + +flightgear::PositionedBinding* +FGNavRecord::createBinding(SGPropertyNode* nd) const +{ + return new flightgear::NavaidBinding(this, nd); +} + + FGTACANRecord::FGTACANRecord(void) : channel(""), freq(0)