timetable-mgr/coordinates/types.go
Fred Boniface 2cf567021d
Some checks failed
Go Test / test (push) Failing after 1m7s
Add coordinate types
2024-06-26 13:09:48 +01:00

12 lines
153 B
Go

package coordinates
type OsCoordinates struct {
Easting int64
Northing int64
}
type GpsCoordinates struct {
Latitude float64
Longitude float64
}