timetable-extension #1

Open
fred.boniface wants to merge 154 commits from timetable-extension into main
Showing only changes of commit 2cf567021d - Show all commits

11
coordinates/types.go Normal file
View File

@ -0,0 +1,11 @@
package coordinates
type OsCoordinates struct {
Easting int64
Northing int64
}
type GpsCoordinates struct {
Latitude float64
Longitude float64
}