Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanrooy authored Dec 23, 2020
1 parent 20638d4 commit e2a5db7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ pip install git+https://github.com/nathanrooy/spatial-analysis

### Haversine
Calculate the distance between two longitude/latitude pairs using the
<a target="_blank" href="https://en.wikipedia.org/wiki/Haversine_formula">Haversine formula</a>. For more information on the math/implementation details, see this blog post here: https://nathanrooy.github.io/posts/2016-09-07/haversine-with-python/
<a target="_blank" href="https://en.wikipedia.org/wiki/Haversine_formula">Haversine formula</a>. For more information on the math/implementation details, see this blog post [<a target="_blank" href="https://nathanrooy.github.io/posts/2016-09-07/haversine-with-python/">here</a>].

```py
>>> from spatial import haversine
Expand Down Expand Up @@ -45,7 +45,7 @@ Example usage:
```
### Vincenty Inverse

If more accuracy is needed than what the Haversine formula can provide, a good option is <a target="_blank" href="https://en.wikipedia.org/wiki/Vincenty%27s_formulae">Vincenty's Inverse formulae</a>. For more information on the math/implementation details, see this blog post here: https://nathanrooy.github.io/posts/2016-12-18/vincenty-formula-with-python/
If more accuracy is needed than what the Haversine formula can provide, a good option is <a target="_blank" href="https://en.wikipedia.org/wiki/Vincenty%27s_formulae">Vincenty's Inverse formulae</a>. For more information on the math/implementation details, see this blog post [<a target="_blank" href="https://nathanrooy.github.io/posts/2016-12-18/vincenty-formula-with-python/">here</a>].

```py
>>> from spatial import vincenty_inverse as vi
Expand Down

0 comments on commit e2a5db7

Please sign in to comment.