Beispiel #1
0
def test_landing_runway() -> None:
    segment = belevingsvlucht.last(minutes=30).on_runway(
        "EHAM")  # type: ignore
    assert segment is not None
    assert segment.mean("altitude") < 0
Beispiel #2
0
def test_landing_runway() -> None:
    last = belevingsvlucht.last(minutes=30)
    assert last is not None
    segment = last.aligned_on_runway("EHAM").max()
    assert segment is not None
    assert segment.mean("altitude") < 0