LocationAccuracy


class LocationAccuracy : DataPointAccuracy


Accuracy for a DataType.LOCATION data point.

Summary

Public constructors

LocationAccuracy(
    horizontalPositionErrorMeters: @FloatRange(from = 0.0) Double,
    verticalPositionErrorMeters: @FloatRange(from = 0.0) Double
)

Public functions

open String

Public properties

@FloatRange(from = 0.0) Double

Represents the estimated horizontal accuracy of the location, radial, in meters.

@FloatRange(from = 0.0) Double

Represents the estimated vertical accuracy corresponding to the altitude of the location, radial, in meters, or it will be Double.MAX_VALUE if it cannot be provided.

Public constructors

LocationAccuracy

Added in 1.0.0
LocationAccuracy(
    horizontalPositionErrorMeters: @FloatRange(from = 0.0) Double,
    verticalPositionErrorMeters: @FloatRange(from = 0.0) Double = Double.MAX_VALUE
)

Public functions

toString

open fun toString(): String

Public properties

horizontalPositionErrorMeters

Added in 1.0.0
val horizontalPositionErrorMeters: @FloatRange(from = 0.0) Double

Represents the estimated horizontal accuracy of the location, radial, in meters. Range starting from 0.0.

verticalPositionErrorMeters

Added in 1.0.0
val verticalPositionErrorMeters: @FloatRange(from = 0.0) Double

Represents the estimated vertical accuracy corresponding to the altitude of the location, radial, in meters, or it will be Double.MAX_VALUE if it cannot be provided. Range starting from 0.0.