Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,28 @@
|
|||
ANGLEBETWEENBEARINGS
|
||||
=LAMBDA(ab,
|
||||
DEGREES(
|
||||
BEARINGDELTA(
|
||||
RADIANS(ab)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
|
||||
BEARINGDELTA
|
||||
=LAMBDA(ab,
|
||||
LET(
|
||||
sinab, SIN(ab),
|
||||
cosab, COS(ab),
|
||||
|
||||
ax, INDEX(sinab, 1),
|
||||
bx, INDEX(sinab, 2),
|
||||
ay, INDEX(cosab, 1),
|
||||
by, INDEX(cosab, 2),
|
||||
|
||||
rem, "Sign * dot product",
|
||||
IF(0 < ((ay * bx) - (by * ax)),
|
||||
1,
|
||||
-1
|
||||
) * ACOS((ax * bx) + (ay * by))
|
||||
)
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue