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