timetable-mgr/coordinates/types.go

12 lines
153 B
Go

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