Add coordinate types
Go Test / test (push) Failing after 1m7s Details

This commit is contained in:
Fred Boniface 2024-06-26 13:09:48 +01:00
parent e8e7a76076
commit 2cf567021d
1 changed files with 11 additions and 0 deletions

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
}