Skip to content

Instantly share code, notes, and snippets.

@zhayes84
zhayes84 / deg_to_cardinal.py
Last active April 26, 2022 07:34 — forked from RobertSudwarts/deg_to_cardinal.py
[python] degrees to cardinal directions
def degrees_to_cardinal(degrees):
directions = ["N", "NNE", "NE", "ENE", "E", "ESE", "SE", "SSE",
"S", "SSW", "SW", "WSW", "W", "WNW", "NW", "NNW"]
ix = round(degrees / (360. / len(directions)))
return directions[ix % len(directions)]