hayai/vendor/github.com/jftuga/geodist/shared.go
2024-12-21 17:26:50 +01:00

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
}