[fix] correct ocaml wgs84_distance function

also remove the warning in the GCS for "approaching" which is not
producing anything since 2016
This commit is contained in:
Gautier Hattenberger
2021-10-27 14:19:46 +02:00
parent 165dd5c1d3
commit cae5024cb2
2 changed files with 1 additions and 15 deletions
+1 -1
View File
@@ -735,6 +735,6 @@ let wgs84_hmsl = fun geo ->
let wgs84_distance = fun geo1 geo2 ->
let e1 = ecef_of_geo WGS84 geo1 0.
and e2 = ecef_of_geo WGS84 geo1 0. in
and e2 = ecef_of_geo WGS84 geo2 0. in
ecef_distance e1 e2