From 2cf567021def69a2219d38782b2fec685e65408e Mon Sep 17 00:00:00 2001 From: Fred Boniface Date: Wed, 26 Jun 2024 13:09:48 +0100 Subject: [PATCH] Add coordinate types --- coordinates/types.go | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 coordinates/types.go diff --git a/coordinates/types.go b/coordinates/types.go new file mode 100644 index 0000000..7c3f92b --- /dev/null +++ b/coordinates/types.go @@ -0,0 +1,11 @@ +package coordinates + +type OsCoordinates struct { + Easting int64 + Northing int64 +} + +type GpsCoordinates struct { + Latitude float64 + Longitude float64 +}