DashOdometryData

class DashOdometryData(val x: Float, val y: Float, val z: Float, val yawAngle: Angle, val monotonicTimestampNanoseconds: Long)

Represents odometry data which includes the position and orientation of a vehicle.

Parameters

x

The x-coordinate of the position in the vehicle's coordinate system, in meters.

y

The y-coordinate of the position in the vehicle's coordinate system, in meters.

z

The z-coordinate of the position in the vehicle's coordinate system, in meters.

yawAngle

The bearing of the car in the vehicle’s local coordinate system.

monotonicTimestampNanoseconds

Timestamp which should be in sync with timestamps of locations from location provider.

Constructors

Link copied to clipboard
constructor(x: Float, y: Float, z: Float, yawAngle: Angle, monotonicTimestampNanoseconds: Long)

Properties

Link copied to clipboard
val x: Float
Link copied to clipboard
val y: Float
Link copied to clipboard
val yawAngle: Angle
Link copied to clipboard
val z: Float

Functions

Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
Link copied to clipboard
open override fun hashCode(): Int
Link copied to clipboard
open override fun toString(): String