Package-level declarations
Types
Link copied to clipboard
Represents altimeter data including pressure and timestamp.
Link copied to clipboard
Represents attitude data including pitch, yaw, and roll angles.
Link copied to clipboard
class DashCompassData(val magneticHeading: Angle?, val trueHeading: Angle?, val headingAccuracy: Angle?, val rawGeomagneticData: Point3D, val monotonicTimestampNanoseconds: Long)
Represents compass data including heading information and raw geomagnetic data.
Link copied to clipboard
Represents the different constellation types (the types of satellite navigation systems).
Link copied to clipboard
Class containing information about ETC gate.
Link copied to clipboard
class DashMotionData(val attitude: DashAttitudeData, val rotationRate: AngularVelocity3D, val gravityAcceleration: Point3D, val userAcceleration: Point3D, val magneticField: Point3D, val heading: Angle, val monotonicTimestampNanoseconds: Long)
Link copied to clipboard
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.
Link copied to clipboard
class DashRawGnssData(val location: DashRawGnssLocation, val satellites: List<DashRawGnssSatelliteData>, val monotonicTimestampNanoseconds: Long)
Represents raw GNSS data, including location information and satellite data.
Link copied to clipboard
class DashRawGnssLocation(val altitude: Float, val bearing: Angle, val speed: Speed, val latitude: Float, val longitude: Float, val bearingAccuracy: Angle, val speedAccuracy: Speed, val horizontalAccuracyMeters: Float, val verticalAccuracyMeters: Float)
Represents raw GNSS location data, which includes various metrics such as altitude, bearing, speed, latitude, and longitude.
Link copied to clipboard
class DashRawGnssSatelliteData(val svid: Int, val carrierFrequencyHz: Float?, val basebandCn0DbHz: Double?, val cn0DbHz: Double, val usedInFix: Boolean, val hasEphemerisData: Boolean, val hasAlmanacData: Boolean, val constellationType: DashConstellationType, val azimuth: Angle, val elevation: Angle)
Represents raw GNSS satellite data, which includes various metrics related to the satellite's signal.