game.core.entities.airport

core/entities/airport.py

Defines the Airport data structure for the game.

Basic information of an airport including ICAO code, name, country, latitude and longitude coordinates.

Classes

Airport(icao, name, country, lat, lon)

Represents an aiport with location and basic information.

class game.core.entities.airport.Airport(icao: str, name: str, country: str, lat: float, lon: float)

Bases: object

Represents an aiport with location and basic information.

country: str
icao: str
lat: float
lon: float
name: str