Spaces:
Sleeping
Sleeping
File size: 13,320 Bytes
5086de6 08b99b2 e1e9687 5086de6 f998aeb 5086de6 bc3a44a 5086de6 d936242 5086de6 d936242 08b99b2 5086de6 d936242 5086de6 bc3a44a 5086de6 bc3a44a 5086de6 08b99b2 5086de6 08b99b2 5086de6 bc3a44a d936242 bc3a44a d936242 bc3a44a d936242 bc3a44a d936242 08b99b2 5086de6 08b99b2 5086de6 bc3a44a 08b99b2 5086de6 bc3a44a 5086de6 bc3a44a 08b99b2 5086de6 bc3a44a 5086de6 d936242 5086de6 d936242 5086de6 08b99b2 5086de6 08b99b2 5086de6 08b99b2 e1e9687 08b99b2 5086de6 d936242 08b99b2 5086de6 08b99b2 5086de6 08b99b2 5086de6 08b99b2 5086de6 08b99b2 5086de6 08b99b2 5086de6 08b99b2 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 | import os
import json
import math
import random
from pathlib import Path
from typing import Optional, List
from atc_rl_api.api.schemas import (
AirportConfig, RunwayConfig, Point, LatLon,
AirportCreateRequest, RunwayCreateRequest,
WaypointCreateRequest, WaypointDeleteRequest,
WaypointUpdateRequest, RunwayUpdateRequest,
WaypointConfig, StarRouteSaveRequest, SidRouteSaveRequest
)
# Calculate AIRPORTS_DIR relative to this file's location (atc_rl_api/api/config_handler.py)
AIRPORTS_DIR = Path(__file__).parent.parent / "airports"
AIRPORTS_DIR.mkdir(parents=True, exist_ok=True)
def get_airport_path(airport_code: str) -> Path:
return AIRPORTS_DIR / f"{airport_code.upper()}.json"
def load_airport_config(airport_code: str) -> Optional[AirportConfig]:
path = get_airport_path(airport_code)
if not path.exists():
return None
with open(path, "r") as f:
data = json.load(f)
# --- MIGRATION BLOCK: Handle old configs missing DP or SIDs ---
# 1. Initialize sids if missing
if "sids" not in data:
data["sids"] = {}
if "terminal_gates" not in data:
data["terminal_gates"] = {}
# 2. Check runways for missing dp or iaf
if "runways" in data:
# We create a temporary AirportConfig to use helper methods
# But the helper methods might need a full AirportConfig object.
# To avoid recursion, we'll do manual fixes if needed.
runways = data["runways"]
for rw in runways:
if "dp" not in rw or "iaf" not in rw:
# If any fix is missing, we need to trigger the generator
# But the generator needs the waypoints pool.
pass # We'll handle this after the object is created for simplicity
config = AirportConfig(**data)
# --- Post-Init Migration ---
needs_save = False
for rw in config.runways:
if rw.dp is None or rw.iaf is None:
# Project missing fixes
_add_runway_fixes(config, rw.id, rw.start, rw.end, rw.heading)
needs_save = True
# Ensure SIDs correspond to existing runways
for rw in config.runways:
if rw.id not in config.sids:
# This will be handled by _add_runway_fixes above, but good to double check
pass
if needs_save:
save_airport_config(config)
return config
def save_airport_config(config: AirportConfig):
path = get_airport_path(config.airport_code)
with open(path, "w") as f:
# Pydantic's .model_dump() for serialization
json.dump(config.model_dump(), f, indent=2)
def create_airport(req: AirportCreateRequest) -> AirportConfig:
# 100x100km setup
width = 100.0
height = 100.0
center_x = width / 2.0
center_y = height / 2.0
config = AirportConfig(
airport_code=req.airport_code.upper(),
name=req.name,
anchor=LatLon(lat=req.anchor_lat, lon=req.anchor_lon),
bounds={"width_km": 100.0, "height_km": 100.0},
center=Point(x=0, y=0),
gates={
"N": Point(x=0, y=45.0),
"S": Point(x=0, y=-45.0),
"E": Point(x=45.0, y=0),
"W": Point(x=-45.0, y=0)
},
terminal_gates={
"G1": Point(x=0.2, y=0.2),
"G2": Point(x=-0.2, y=0.2),
"G3": Point(x=0.2, y=-0.2),
"G4": Point(x=-0.2, y=-0.2)
},
runways=[],
stars={}
)
save_airport_config(config)
return config
def list_all_airports() -> List[AirportConfig]:
airports = []
for f in AIRPORTS_DIR.glob("*.json"):
code = f.stem
cfg = load_airport_config(code)
if cfg:
airports.append(cfg)
return airports
def geo_to_xy(lat: float, lon: float, anchor: LatLon) -> Point:
# Planar projection logic: 111.32 km per degree lat
# Center of 50x50km is (25, 25)
KM_PER_DEG_LAT = 111.32
# Y increases upwards in backend
dy = (lat - anchor.lat) * KM_PER_DEG_LAT
dx = (lon - anchor.lon) * (KM_PER_DEG_LAT * math.cos(math.radians(anchor.lat)))
return Point(x=dx, y=dy)
def xy_to_latLon_list(x: float, y: float, anchor: LatLon) -> list:
KM_PER_DEG_LAT = 111.32
dx = x
dy = y
lat = anchor.lat + (dy / KM_PER_DEG_LAT)
lon = anchor.lon + (dx / (KM_PER_DEG_LAT * math.cos(math.radians(anchor.lat))))
return [round(lat, 6), round(lon, 6)]
def _add_runway_fixes(config, rw_id, start_p, end_p, heading):
"""Internal helper to project IAF, FAF, and DP waypoints for a runway and projects SID/STARs."""
rad = math.radians(heading)
# Unit vector in direction of landing (HEADING 0 is North +Y, 90 is East +X)
dx = math.sin(rad)
dy = math.cos(rad)
# 1. Approach Fixes (Backward from start_p)
# FAF (9km)
faf_p = Point(x=start_p.x - dx * 9.0, y=start_p.y - dy * 9.0)
faf_id = f"FAF_{rw_id}"
config.waypoints[faf_id] = WaypointConfig(
id=faf_id, name=faf_id, x=faf_p.x, y=faf_p.y,
target_alt=2000, target_speed=180, is_iaf=False, is_faf=True
)
# IAF (20km)
iaf_p = Point(x=start_p.x - dx * 20.0, y=start_p.y - dy * 20.0)
iaf_id = f"IAF_{rw_id}"
config.waypoints[iaf_id] = WaypointConfig(
id=iaf_id, name=iaf_id, x=iaf_p.x, y=iaf_p.y,
target_alt=4000, target_speed=210, is_iaf=True
)
# 2. Departure Fix (DP) - Forward from end_p 25km
dp_p = Point(x=end_p.x + dx * 25.0, y=end_p.y + dy * 25.0)
dp_id = f"DP_{rw_id}"
config.waypoints[dp_id] = WaypointConfig(
id=dp_id, name="DP", x=dp_p.x, y=dp_p.y,
target_alt=6000, target_speed=250
)
# 3. Auto-generate STARs (Gate -> IAF -> FAF)
for gate_id in config.gates:
if gate_id not in config.stars: config.stars[gate_id] = {}
config.stars[gate_id][rw_id] = [iaf_id, faf_id]
# 4. Auto-generate SIDs (DP -> Gate)
if rw_id not in config.sids: config.sids[rw_id] = {}
for gate_id in config.gates:
config.sids[rw_id][gate_id] = [dp_id, gate_id]
return iaf_p, dp_p
def add_runway_from_geo(airport_code: str, start_latlon: list, end_latlon: list, bidirectional: bool = False) -> AirportConfig:
# Find airport by code
config = load_airport_config(airport_code)
if not config:
raise ValueError(f"Airport with code '{airport_code}' not found")
p1 = geo_to_xy(start_latlon[0], start_latlon[1], config.anchor)
p2 = geo_to_xy(end_latlon[0], end_latlon[1], config.anchor)
# Calculate heading and length from XY
dx = p2.x - p1.x
dy = p2.y - p1.y
length = math.sqrt(dx**2 + dy**2)
# Aviation: 0 North (+Y), 90 East (+X)
heading = (90 - math.degrees(math.atan2(dy, dx))) % 360
rw_id = f"RWY_{len(config.runways) + 1}"
# Automatically project FAF/IAF/DP
iaf_point, dp_point = _add_runway_fixes(config, rw_id, p1, p2, heading)
new_runway = RunwayConfig(
id=rw_id,
heading=heading,
length_km=length,
start=p1,
end=p2,
iaf=iaf_point,
dp=dp_point
)
config.runways.append(new_runway)
if bidirectional:
# Create reverse runway (180 deg opposite)
rev_id = f"{rw_id}_REV"
rev_heading = (heading + 180) % 360
# Automatically project fixes for the reverse side (start=p2, end=p1)
rev_iaf_point, rev_dp_point = _add_runway_fixes(config, rev_id, p2, p1, rev_heading)
config.runways.append(RunwayConfig(
id=rev_id,
heading=rev_heading,
length_km=length,
start=p2,
end=p1,
iaf=rev_iaf_point,
dp=rev_dp_point
))
save_airport_config(config)
return config
def add_runway(req: RunwayCreateRequest) -> AirportConfig:
# Existing method for REST API
config = load_airport_config(req.airport_code)
if not config:
raise ValueError(f"Airport {req.airport_code} not found")
# Math for runway endpoints (heading 0=N, 90=E)
rad = math.radians(req.heading)
dx = math.sin(rad)
dy = math.cos(rad)
cx, cy = config.center.x, config.center.y
half_len = req.length_km / 2.0
start_p = Point(x=cx - dx * half_len, y=cy - dy * half_len)
end_p = Point(x=cx + dx * half_len, y=cy + dy * half_len)
# Automatically project FAF/IAF
iaf_p = _add_approach_fixes(config, req.runway_id, start_p, req.heading)
new_runway = RunwayConfig(
id=req.runway_id,
heading=req.heading,
length_km=req.length_km,
start=start_p,
end=end_p,
iaf=iaf_p
)
# Check if runway exists and replace or append
config.runways = [rw for rw in config.runways if rw.id != req.runway_id]
config.runways.append(new_runway)
save_airport_config(config)
return config
def add_waypoint(req: WaypointCreateRequest) -> AirportConfig:
config = load_airport_config(req.airport_code)
if not config:
raise ValueError(f"Airport {req.airport_code} not found")
wp = WaypointConfig(
name=req.name or f"WP_{len(config.waypoints) + 1}",
x=req.x,
y=req.y,
target_alt=req.target_alt or 3000,
target_speed=req.target_speed or 210,
is_iaf=req.is_iaf
)
config.waypoints[wp.id] = wp
save_airport_config(config)
return config
def save_star_route(req: StarRouteSaveRequest) -> AirportConfig:
config = load_airport_config(req.airport_code)
if not config:
raise ValueError(f"Airport {req.airport_code} not found")
if req.gate_id not in config.stars:
config.stars[req.gate_id] = {}
config.stars[req.gate_id][req.runway_id] = req.route_sequence
if req.name:
config.star_names[f"{req.gate_id}:{req.runway_id}"] = req.name
save_airport_config(config)
return config
def save_sid_route(req: SidRouteSaveRequest) -> AirportConfig:
config = load_airport_config(req.airport_code)
if not config:
raise ValueError(f"Airport {req.airport_code} not found")
if req.runway_id not in config.sids:
config.sids[req.runway_id] = {}
config.sids[req.runway_id][req.gate_id] = req.route_sequence
if req.name:
config.sid_names[f"{req.runway_id}:{req.gate_id}"] = req.name
save_airport_config(config)
return config
def update_waypoint(req: WaypointUpdateRequest) -> AirportConfig:
config = load_airport_config(req.airport_code)
if not config:
raise ValueError(f"Airport {req.airport_code} not found")
# Pool architecture: lookup by waypoint_id
if req.waypoint_id in config.waypoints:
wp = config.waypoints[req.waypoint_id]
if req.name is not None: wp.name = req.name
if req.target_alt is not None: wp.target_alt = req.target_alt
if req.target_speed is not None: wp.target_speed = req.target_speed
else:
# Fallback: find by name if ID lookup fails (old waypoints)
for wp in config.waypoints.values():
if wp.name == req.name:
if req.target_alt is not None: wp.target_alt = req.target_alt
if req.target_speed is not None: wp.target_speed = req.target_speed
break
save_airport_config(config)
return config
def update_runway(req: RunwayUpdateRequest) -> AirportConfig:
config = load_airport_config(req.airport_code)
if not config:
raise ValueError(f"Airport {req.airport_code} not found")
for rw in config.runways:
if rw.id == req.runway_id:
if req.new_id: rw.id = req.new_id
if req.heading is not None: rw.heading = req.heading
break
save_airport_config(config)
return config
def delete_waypoint(airport_code: str, waypoint_id: str) -> Optional[AirportConfig]:
config = load_airport_config(airport_code)
if not config:
return None
# Remove from global pool
if waypoint_id in config.waypoints:
del config.waypoints[waypoint_id]
# Cascade: remove ID from all star procedures
for gate in config.stars:
for rwy in config.stars[gate]:
config.stars[gate][rwy] = [wp_id for wp_id in config.stars[gate][rwy] if wp_id != waypoint_id]
save_airport_config(config)
return config
def delete_runway(airport_code: str, runway_id: str) -> Optional[AirportConfig]:
config = load_airport_config(airport_code)
if not config:
return None
# Remove the runway and its reverse if applicable
config.runways = [rw for rw in config.runways if rw.id != runway_id and rw.id != f"{runway_id}_REV"]
# Cascade delete from stars (terminal procedures)
for gate in config.stars:
# pop() with None default avoids KeyError if the runway wasn't defined for a specific gate
config.stars[gate].pop(runway_id, None)
config.stars[gate].pop(f"{runway_id}_REV", None)
save_airport_config(config)
return config
|