Skip to content

Instantly share code, notes, and snippets.

@jxxe
Forked from RobertSudwarts/deg_to_cardinal.py
Last active June 4, 2022 13:25
Show Gist options
  • Save jxxe/13c4f564a6c102edf5bedf20ccad2b18 to your computer and use it in GitHub Desktop.
Save jxxe/13c4f564a6c102edf5bedf20ccad2b18 to your computer and use it in GitHub Desktop.
[PHP] Convert degrees to cardinal directions
function degreesToCardinal($degrees) {
$directions = ['N', 'NNE', 'NE', 'ENE', 'E', 'ESE', 'SE', 'SSE', 'S', 'SSW', 'SW', 'WSW', 'W', 'WNW', 'NW', 'NNW'];
$index = ($degrees + 11.25) / 22.5;
return $directions[$index % 16];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment