Make distance metric configurable; fix building period bug

This commit is contained in:
2022-12-15 10:21:21 -06:00
parent 48bd3c403f
commit 841fbf16fb
9 changed files with 55 additions and 27 deletions

View File

@@ -11,7 +11,7 @@ using RELOG
-87.656,
39.764,
-86.148,
RELOG._EuclideanDistance(),
RELOG.EuclideanDistance(),
) == 265.818
# Approximate driving distance between Chicago and Indianapolis
@@ -20,6 +20,6 @@ using RELOG
-87.656,
39.764,
-86.148,
RELOG._KnnDrivingDistance(),
RELOG.KnnDrivingDistance(),
) == 316.43
end