SpeedWithAccuracy

@Serializable
data class SpeedWithAccuracy(val distancePerSecond: Length, val accuracy: Length?)(source)

Represents a speed value with its potential accuracy.

Constructors

Link copied to clipboard
constructor(distancePerSecond: Length, accuracy: Length?)

Properties

Link copied to clipboard

The potential error in the speed measurement, also expressed as a length per second. A smaller value indicates a more precise measurement. A null value indicates that the accuracy is unknown.

Link copied to clipboard

The speed, expressed as a length traveled per second.