Skip to content

Commit

Permalink
Added missed approach holding beacons (#27)
Browse files Browse the repository at this point in the history
  • Loading branch information
zefir-git authored Feb 8, 2025
2 parents 454b233 + 54b5647 commit 0a5cdf9
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion airspace/EGGW.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export default class EGGW {
NamedFix.fromDMS("514257N", "0005142W", "RODNI", "Rodni"),
NamedFix.fromDMS("520740N", "0004403W", "OLNEY", "Olney"),
],
Generator.getInstance().beacon("BKY")
Generator.getInstance().beacon("LUT")
)
);
}
Expand Down
2 changes: 1 addition & 1 deletion airspace/EGLC.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export default class EGLC {
NamedFix.fromDMS("514504.03N", "0001113.77W", "SAXBI", "Saxbi"),
NamedFix.fromDMS("513531.78N", "0001715.47E", "ODUKU", "Oduku")
],
Generator.getInstance().beacon("LON")
Generator.getInstance().beacon("LCY")
)
);
}
Expand Down
6 changes: 6 additions & 0 deletions airspace/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,12 @@ gen.airspace(
Beacon.fromDMS("510102N", "0000658E", "MAY", "Mayfield", {left: 87}),
Beacon.fromDMS("515923N", "0000343E", "BKY", "Barkway"),

// Missed approach holding
Beacon.fromDMS("511910N", "0002219W", "EPM", "Epsom", {left: 271}),
Beacon.fromDMS("513723N", "0003107W", "CHT", "Chiltern", {left: 290}),
Beacon.fromDMS("515341N", "0001509W", "LUT", "Luton", 254),
Beacon.fromDMS("513016N", "0000403E", "LCY", "London City", 272),

// STAR holding endpoints
Beacon.fromDMS("513845.69N", "0000906.13E", "LAM", "Lambourne", {left: 263}),
Beacon.fromDMS("511951.15N", "0000205.32E", "BIG", "Biggin", 302),
Expand Down

0 comments on commit 0a5cdf9

Please sign in to comment.