Skip to content
This repository has been archived by the owner on Dec 29, 2023. It is now read-only.

Commit

Permalink
Convert airport elevation to feet
Browse files Browse the repository at this point in the history
  • Loading branch information
BlueberryKing committed Oct 24, 2023
1 parent c2e4de4 commit f8ebf75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/client/backends/Msfs/Mapping.ts
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ export class MsfsMapping {
if (runway.length > longestRunway[0]) {
longestRunway = [runway.length, runway];
}
elevations.push(runway.elevation);
elevations.push(runway.elevation * 3.28084);
});

// MSFS doesn't give the airport elevation... so we take the mean of the runway elevations
Expand Down

0 comments on commit f8ebf75

Please sign in to comment.