| 81 | } |
| 82 | |
| 83 | Altitude GetValue(ms::LatLon const & pos) override |
| 84 | { |
| 85 | auto const alt = GetValueImpl(pos); |
| 86 | if (IsValidAltitude(alt)) |
| 87 | return alt; |
| 88 | return GetMedianValue(pos); |
| 89 | } |
| 90 | |
| 91 | Altitude GetInvalidValue() const override { return kInvalidAltitude; } |
| 92 |
no outgoing calls
no test coverage detected