Created
December 28, 2013 19:29
-
-
Save adrianstevens/8163205 to your computer and use it in GitHub Desktop.
Compass heading to cardinal direction in c#
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static string DegreesToCardinal(double degrees) | |
{ | |
string[] caridnals = { "N", "NE", "E", "SE", "S", "SW", "W", "NW", "N" }; | |
return caridnals[ (int)Math.Round(((double)degrees % 360) / 45) ]; | |
} | |
public static string DegreesToCardinalDetailed(double degrees) | |
{ | |
string[] caridnals = { "N", "NNE", "NE", "ENE", "E", "ESE", "SE", "SSE", "S", "SSW", "SW", "WSW", "W", "WNW", "NW", "NNW", "N" }; | |
return caridnals[ (int)Math.Round(((double)degrees*10 % 3600) / 225) ]; | |
} |
@JohnSpahr thanks, this helped me :)
@quicoli Awesome! Glad it worked
It still needs conversion for negative degrees...
var degrees = e.Reading.HeadingMagneticNorth<0 ? 360+e.Reading.HeadingMagneticNorth : e.Reading.HeadingMagneticNorth;
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I got it to work. Thanks for the code, this calculation is very handy!
My implementation:
I hope this helps someone!