dcs-retribution/game/weather/atmosphericconditions.py
2023-06-15 03:11:12 +02:00

18 lines
330 B
Python

from __future__ import annotations
from dataclasses import dataclass
from game.utils import Pressure
@dataclass
class AtmosphericConditions:
#: Pressure at sea level.
qnh: Pressure
#: Temperature at sea level in Celcius.
temperature_celsius: float
#: Turbulence per 10 cm.
turbulence_per_10cm: float