mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-05 01:05:34 +08:00
Ref T773, adjust skip values (speed/radius)
This commit is contained in:
committed by
Mat Sutcliffe
parent
e21dab0605
commit
3b73f6aa25
@@ -1050,12 +1050,15 @@ namespace BlackMisc
|
||||
|
||||
bool CAircraftSituation::canLikelySkipNearGroundInterpolation() const
|
||||
{
|
||||
if (this->isNull()) { return true; }
|
||||
|
||||
// those we can exclude, we are ON GROUND not guessed
|
||||
if (this->isOnGround() && this->hasInboundGroundDetails()) { return false; }
|
||||
|
||||
// cases where we can skip
|
||||
if (this->isNull()) { return true; }
|
||||
if (this->getGroundSpeed().value(CSpeedUnit::kts()) > 250) { return true; }
|
||||
// Concorde had a take-off speed of 220 knots (250 mph) and
|
||||
// landing speed was 187 mph
|
||||
if (this->getGroundSpeed().value(CSpeedUnit::kts()) > 225.0) { return true; }
|
||||
|
||||
if (this->hasGroundElevation())
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user