Skip to content

Commit e2a5db7

Browse files
authored
Update README.md
1 parent 20638d4 commit e2a5db7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ pip install git+https://github.com/nathanrooy/spatial-analysis
1414

1515
### Haversine
1616
Calculate the distance between two longitude/latitude pairs using the
17-
<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/
17+
<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>].
1818

1919
```py
2020
>>> from spatial import haversine
@@ -45,7 +45,7 @@ Example usage:
4545
```
4646
### Vincenty Inverse
4747

48-
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/
48+
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>].
4949

5050
```py
5151
>>> from spatial import vincenty_inverse as vi

0 commit comments

Comments
 (0)