TrackRecord

@Serializable
data class TrackRecord(val latitude: Double, val longitude: Double, val accuracy: Int, val timestamp: SmpTimestamp)

Represents a single location record with timestamp and accuracy information.

This data class captures a point-in-time location reading with geographical coordinates, accuracy measurement, and the exact time when the reading was taken.

Constructors

Link copied to clipboard
constructor(latitude: Double, longitude: Double, accuracy: Int, timestamp: SmpTimestamp)

Properties

Link copied to clipboard

The estimated accuracy of the location reading in meters.

Link copied to clipboard

The geographical latitude coordinate in decimal degrees.

Link copied to clipboard

The geographical longitude coordinate in decimal degrees.

Link copied to clipboard

The exact time when this location was recorded.