Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions src/traffic/data/basic/runways.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,13 @@

from ... import cache_expiration
from ...core.geodesy import bearing, destination
from ...core.mixins import DataFrameMixin, HBoxMixin, PointMixin, ShapelyMixin
from ...core.mixins import (
DataFrameMixin,
HBoxMixin,
PointMixin,
ShapelyMixin,
GeographyMixin,
)

if TYPE_CHECKING:
import altair as alt
Expand All @@ -50,7 +56,7 @@ def __repr__(self) -> str:
RunwaysType = Dict[str, List[Tuple[Threshold, Threshold]]]


class RunwayAirport(HBoxMixin, ShapelyMixin, DataFrameMixin):
class RunwayAirport(HBoxMixin, ShapelyMixin, GeographyMixin):
def __init__(
self,
data: Optional[pd.DataFrame] = None,
Expand Down