11 lines
214 B
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
|