timetable-extension #1

Merged
fred.boniface merged 165 commits from timetable-extension into main 2025-06-18 21:06:04 +01:00
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
}