go语言使用Haversine公式计算两个坐标之间的距离

2023-06-01 00:00:00 距离 坐标 公式

根据坐标计算当前位置到附近一个点或多个点的距离,我们就可以使用Haversine公式了。

下面是一个使用Haversine公式计算两个坐标之间距离功能的代码示例:


package controllers

import (
"fmt"
"math"

)

// TestController  is a test control
type TestController struct {
//beego.Controller
BaseController
}

//坐标-经纬度
type Coordinates struct {
Latitude  float64
Longitude float64
}

//地球的平均半径以千米为单位
const radius = 6371

//度数转弧度公式
func degrees2radians(degrees float64) float64 {
return degrees * math.Pi / 180
}

//Haversine公式(半正矢公式):计算两点之间的直线距离
func (origin Coordinates) Distance(destination Coordinates) float64 {
degreesLat := degrees2radians(destination.Latitude - origin.Latitude)
degreesLong := degrees2radians(destination.Longitude - origin.Longitude)
a := (math.Sin(degreesLat/2)*math.Sin(degreesLat/2) +
math.Cos(degrees2radians(origin.Latitude))*
math.Cos(degrees2radians(destination.Latitude))*math.Sin(degreesLong/2)*
math.Sin(degreesLong/2))
c := 2 * math.Atan2(math.Sqrt(a), math.Sqrt(1-a))
d := radius * c

return d
}

func (c *TestController) Aaa() {

//广州 - 天河公园
pointA := Coordinates{23.127613278533207, 113.36619463562009}
//广州 - 骏唐购物广场
pointB := Coordinates{23.125876748465735, 113.38340368865964}

fmt.Println("广州-天河公园 A : ", pointA)
fmt.Println("广州-骏唐购物广场 B : ", pointB)

distance := pointA.Distance(pointB)
fmt.Printf("广州-天河公园到广州-骏唐购物广场的距离是 %.2f 公里.\n", distance)
}

效果图:

Haversine.png

相关文章