timetable-mgr/coordinates/types.go

12 lines
153 B
Go
Raw Normal View History

2024-06-26 13:09:48 +01:00
package coordinates
type OsCoordinates struct {
Easting int64
Northing int64
}
type GpsCoordinates struct {
Latitude float64
Longitude float64
}