From e2a5db7ba11ecaf75a77147b24218f897b6de2e0 Mon Sep 17 00:00:00 2001 From: Nathan Rooy Date: Wed, 23 Dec 2020 10:44:19 -0500 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 81564c9..085e3c5 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ pip install git+https://github.com/nathanrooy/spatial-analysis ### Haversine Calculate the distance between two longitude/latitude pairs using the -Haversine formula. For more information on the math/implementation details, see this blog post here: https://nathanrooy.github.io/posts/2016-09-07/haversine-with-python/ +Haversine formula. For more information on the math/implementation details, see this blog post [here]. ```py >>> from spatial import haversine @@ -45,7 +45,7 @@ Example usage: ``` ### Vincenty Inverse -If more accuracy is needed than what the Haversine formula can provide, a good option is Vincenty's Inverse formulae. 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 Vincenty's Inverse formulae. For more information on the math/implementation details, see this blog post [here]. ```py >>> from spatial import vincenty_inverse as vi