Data update
This commit is contained in:
parent
72eb4943cb
commit
4d5544505c
2347 changed files with 62432 additions and 16731 deletions
|
|
@ -17,7 +17,7 @@ func$ expand cp$ .
|
|||
h$ = strchar (strcode substr r$ 1 1 - 32)
|
||||
return h$ & substr r$ 2 999
|
||||
.
|
||||
proc main . .
|
||||
proc main .
|
||||
cp$[] = [ "N" "NbE" "N-NE" "NEbN" "NE" "NEbE" "E-NE" "EbN" "E" "EbS" "E-SE" "SEbE" "SE" "SEbS" "S-SE" "SbE" "S" "SbW" "S-SW" "SWbS" "SW" "SWbW" "W-SW" "WbS" "W" "WbN" "W-NW" "NWbW" "NW" "NWbN" "N-NW" "NbW" ]
|
||||
print "Index Degrees Compass point"
|
||||
print "----- ------- -------------"
|
||||
|
|
|
|||
29
Task/Box-the-compass/Standard-ML/box-the-compass.ml
Normal file
29
Task/Box-the-compass/Standard-ML/box-the-compass.ml
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
local
|
||||
val box = Array.fromList [
|
||||
"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",
|
||||
"South", "South by west", "South-southwest", "Southwest by south",
|
||||
"Southwest", "Southwest by west", "West-southwest", "West by south",
|
||||
"West", "West by north", "West-northwest", "Northwest by west",
|
||||
"Northwest", "Northwest by north", "North-northwest", "North by west"]
|
||||
|
||||
val phis = Array.fromList [
|
||||
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,
|
||||
286.87, 286.88, 303.75, 320.62, 320.63, 337.5, 354.37, 354.38
|
||||
]
|
||||
in
|
||||
val _ = Array.app (fn phi =>
|
||||
let val i = Real.trunc ((phi * 32.0) / 360.0 + 0.5) mod 32
|
||||
in print (StringCvt.padLeft #" " 3 (Int.toString (i+1))
|
||||
^ " "
|
||||
^ StringCvt.padLeft #" " 18 (Array.sub (box, i))
|
||||
^ " "
|
||||
^ Real.fmt (StringCvt.FIX (SOME 2)) phi
|
||||
^ "\n")
|
||||
end)
|
||||
phis
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue