-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix comparisons, formatting, naming, typos, etc.
- Loading branch information
Showing
70 changed files
with
11,883 additions
and
12,056 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,73 +1,72 @@ | ||
namespace Meadow.Units | ||
namespace Meadow.Units; | ||
|
||
/// <summary> | ||
/// Cardinal compass directions | ||
/// </summary> | ||
public enum Azimuth16PointCardinalNames | ||
{ | ||
/// <summary> | ||
/// Cardinal compass directions | ||
/// </summary> | ||
public enum Azimuth16PointCardinalNames | ||
{ | ||
/// <summary> | ||
/// North | ||
/// </summary> | ||
N, | ||
/// <summary> | ||
/// North by northeast | ||
/// </summary> | ||
NNE, | ||
/// <summary> | ||
/// Northeast | ||
/// </summary> | ||
NE, | ||
/// <summary> | ||
/// East by northeast | ||
/// </summary> | ||
ENE, | ||
/// <summary> | ||
/// East | ||
/// </summary> | ||
E, | ||
/// <summary> | ||
/// East by southeast | ||
/// </summary> | ||
ESE, | ||
/// <summary> | ||
/// Southeast | ||
/// </summary> | ||
SE, | ||
/// <summary> | ||
/// South by southeast | ||
/// </summary> | ||
SSE, | ||
/// <summary> | ||
/// South | ||
/// </summary> | ||
S, | ||
/// <summary> | ||
/// South by southwest | ||
/// </summary> | ||
SSW, | ||
/// <summary> | ||
/// Southwest | ||
/// </summary> | ||
SW, | ||
/// <summary> | ||
/// West by southwest | ||
/// </summary> | ||
WSW, | ||
/// <summary> | ||
/// West | ||
/// </summary> | ||
W, | ||
/// <summary> | ||
/// West by northwest | ||
/// </summary> | ||
WNW, | ||
/// <summary> | ||
/// Northwest | ||
/// </summary> | ||
NW, | ||
/// <summary> | ||
/// North by northwest | ||
/// </summary> | ||
NNW | ||
} | ||
/// North | ||
/// </summary> | ||
N, | ||
/// <summary> | ||
/// North by northeast | ||
/// </summary> | ||
NNE, | ||
/// <summary> | ||
/// Northeast | ||
/// </summary> | ||
NE, | ||
/// <summary> | ||
/// East by northeast | ||
/// </summary> | ||
ENE, | ||
/// <summary> | ||
/// East | ||
/// </summary> | ||
E, | ||
/// <summary> | ||
/// East by southeast | ||
/// </summary> | ||
ESE, | ||
/// <summary> | ||
/// Southeast | ||
/// </summary> | ||
SE, | ||
/// <summary> | ||
/// South by southeast | ||
/// </summary> | ||
SSE, | ||
/// <summary> | ||
/// South | ||
/// </summary> | ||
S, | ||
/// <summary> | ||
/// South by southwest | ||
/// </summary> | ||
SSW, | ||
/// <summary> | ||
/// Southwest | ||
/// </summary> | ||
SW, | ||
/// <summary> | ||
/// West by southwest | ||
/// </summary> | ||
WSW, | ||
/// <summary> | ||
/// West | ||
/// </summary> | ||
W, | ||
/// <summary> | ||
/// West by northwest | ||
/// </summary> | ||
WNW, | ||
/// <summary> | ||
/// Northwest | ||
/// </summary> | ||
NW, | ||
/// <summary> | ||
/// North by northwest | ||
/// </summary> | ||
NNW | ||
} |
Oops, something went wrong.