Files
cloud-services/pkg/common/gps_path.go

11 lines
214 B
Go

package common
// GpsPaths is a map of VIN:GpsPath
type GpsPaths map[string]GpsPath
// GpsPath is a slice of GpsPoints
type GpsPath []GpsPoint
// GpsPoint is a [latitude, longitude] pair
type GpsPoint []float64