timetable-extension #1

Open
fred.boniface wants to merge 144 commits from timetable-extension into main
1 changed files with 11 additions and 0 deletions
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
}