timetable-mgr/bplan/types.go
Fred Boniface e8e7a76076
Some checks failed
Go Test / test (push) Has been cancelled
Prep work for addition of location data for TIPLOCS
2024-06-26 13:07:44 +01:00

14 lines
176 B
Go

package bplan
type TiplocLatLong struct {
Tiploc string
Latitude float64
Longitude float64
}
type TiplocOS struct {
Tiploc string
Easting int64
Northing int64
}