#rust


Cosine Haversine formula in Rust
June 12, 2020

I recently had to work with an implementation of Cosine Haversine formula in Javascript. I decided I wanted to understand how this worked in more detail, so reimplemented the algorithm in Rust to perform some tests. The formula is as follows: =ACOS…