Some general considerations.

This commit is contained in:
Sebastian Kramer
2021-08-13 10:41:11 +02:00
parent a0d4a1e0d3
commit c80d230946
3 changed files with 82 additions and 0 deletions

22
icao/recat.py Normal file
View File

@@ -0,0 +1,22 @@
# Recat departure separation in seconds
# x = CAT A -> CAT F
# y = CAT A -> CAT F
# https://www.skybrary.aero/index.php/RECAT_-_Wake_Turbulence_Re-categorisation
recatDeparture = [
[0, 100, 120, 140, 160, 180],
[0, 0, 0, 100, 120, 140],
[0, 0, 0, 80, 100, 120],
[0, 0, 0, 0, 0, 120],
[0, 0, 0, 0, 0, 100],
[0, 0, 0, 0, 0, 80],
]
#Recat Arrival in NM
recatArrival = [
[3, 4, 5, 5, 6, 8],
[0, 3, 4, 4, 5, 7],
[0, 0, 3, 3, 4, 6],
[0, 0, 0, 0, 0, 5],
[0, 0, 0, 0, 0, 4],
[0, 0, 0, 0, 0, 3],
]