From b8917d91b6bb9b927aa6ec955f04e9544cd4ce0a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BAlio=20Hoffimann?= Date: Wed, 21 Aug 2024 10:20:38 -0300 Subject: [PATCH] Export popular distances (#462) --- Project.toml | 2 ++ src/GeoStats.jl | 2 ++ 2 files changed, 4 insertions(+) diff --git a/Project.toml b/Project.toml index 66bb4685..5abf4523 100644 --- a/Project.toml +++ b/Project.toml @@ -11,6 +11,7 @@ CoordRefSystems = "b46f11dc-f210-4604-bfba-323c1ec968cb" DataScienceTraits = "6cb2f572-2d2b-4ba6-bdb3-e710fa044d6c" Dates = "ade2ca70-3891-5945-98fb-dc099432e06a" DensityRatioEstimation = "ab46fb84-d57c-11e9-2f65-6f72e4a7229f" +Distances = "b4f34e82-e78d-54a5-968a-f98e89d6e8f7" GeoStatsBase = "323cb8eb-fbf6-51c0-afd0-f8fba70507b2" GeoStatsFunctions = "6771c435-bc22-4842-b0c3-41852a255103" GeoStatsModels = "ad987403-13c5-47b5-afee-0a48f6ac4f12" @@ -36,6 +37,7 @@ CoordRefSystems = "0.10" DataScienceTraits = "0.4" Dates = "1.9" DensityRatioEstimation = "1.2" +Distances = "0.10" GeoStatsBase = "0.45" GeoStatsFunctions = "0.4" GeoStatsModels = "0.4" diff --git a/src/GeoStats.jl b/src/GeoStats.jl index c9d871e7..0d50429f 100644 --- a/src/GeoStats.jl +++ b/src/GeoStats.jl @@ -36,5 +36,7 @@ using Reexport @reexport using GeoStatsTransforms @reexport using GeoStatsValidation @reexport using Chain: @chain +@reexport using Distances: Euclidean +@reexport using Distances: Haversine end