Data update

This commit is contained in:
Ingy döt Net 2024-07-13 15:19:22 -07:00
parent 29a5eea0d4
commit 5c1bb7bfa9
2011 changed files with 35081 additions and 3229 deletions

View file

@ -1,4 +1,4 @@
val .box = ["North", "North by east", "North-northeast", "Northeast by north",
val box = ["North", "North by east", "North-northeast", "Northeast by north",
"Northeast", "Northeast by east", "East-northeast", "East by north",
"East", "East by south", "East-southeast", "Southeast by east",
"Southeast", "Southeast by south", "South-southeast", "South by east",
@ -7,7 +7,7 @@ val .box = ["North", "North by east", "North-northeast", "Northeast by north",
"West", "West by north", "West-northwest", "Northwest by west",
"Northwest", "Northwest by north", "North-northwest", "North by west"]
val .angles = [
val angles = [
0.0, 16.87, 16.88, 33.75, 50.62, 50.63, 67.5, 84.37, 84.38,
101.25, 118.12, 118.13, 135.0, 151.87, 151.88, 168.75, 185.62,
185.63, 202.5, 219.37, 219.38, 236.25, 253.12, 253.13, 270.0,
@ -16,7 +16,7 @@ val .angles = [
writeln "index degrees compass point"
writeln "----- ------- -------------"
for .phi in .angles {
val .i = trunc(.phi * 32 / 360 + 0.5) rem 32 + 1
writeln $"\{.i:5} \{.phi:r2:6} \{.box[.i]}"
for phi in angles {
val i = trunc(phi * 32 / 360 + 0.5) rem 32 + 1
writeln "{{i:5}} {{phi:r2:6}} {{box[i]}}"
}