mirror of
https://github.com/make-42/hayai.git
synced 2025-01-18 18:47:10 +01:00
18 lines
223 B
Go
18 lines
223 B
Go
/*
|
|
shared.go
|
|
-John Taylor
|
|
|
|
shared components between the distance algorithms
|
|
|
|
*/
|
|
|
|
package geodist
|
|
|
|
const version string = "1.0.0"
|
|
|
|
// Coord represents a geographic coordinate
|
|
type Coord struct {
|
|
Lat float64
|
|
Lon float64
|
|
}
|