Every chart on this site is computed from raw DIMO telemetry that the vehicle owner cryptographically granted us the right to read. Here's exactly how each number was derived, what signals we used, and what we deliberately didn't show.
DIMO's telemetry API exposes five detection mechanisms. We used frequency analysis, which detects activity by signal-update rate rather than relying on the isIgnitionOn signal (which didn't start reporting until 25 Oct 2025). This gave us a consistent view across the full observation window.
For every highway sample in every trip, we pair the speed signal with the powertrainCombustionEngineSpeed signal by nearest timestamp, then compute the ratio. For a 2025 Ram 1500 with the 5.7 L Hemi and 8HP70 transmission, unloaded highway cruise sits at roughly 26.2 RPM per MPH. When the truck is pulling a load, the transmission holds a lower gear and that ratio climbs.
The fuel-level signal (powertrainFuelSystemRelativeLevel) returns a percentage. DIMO's refuel-segment detector identifies each time the level jumps up significantly. Between consecutive refuel events, miles travelled are computed from powertrainTransmissionTravelledDistance deltas. Gallons used are inferred by multiplying the pre-refuel level decrease by the published tank capacity.
A cold start is defined as a trip whose first powertrainCombustionEngineECT (engine coolant temperature) reading is within 10 °C of the first exteriorAirTemperature reading, with ECT subsequently rising by at least 30 °C. That excludes trips where the engine was already warm.
We classify an ignition session (isIgnitionOn → ON → OFF) as a remote start when: duration is between 60 seconds and 25 minutes, no speed sample exceeds 3 km/h during the session, and ECT rises by at least 10 °C. That catches the signature of a truck warming up without moving.
Real-world telemetry is not perfectly clean. This is what we noticed and chose to disclose:
chassisAxleRow*WheelLeft/RightTirePressure signals went silent that day and never returned. Possible causes: device firmware update, dongle reseating, or the truck's TPMS broadcasting on a frequency the R1 stopped polling. We left it as-is rather than imputing.The vehicle owner granted us specific signal permissions via an on-chain SACD document, including exact GPS. For privacy reasons in this public write-up we have:
privilege:GetVINCredential grant)The DIMO protocol exposes a separate privilege:GetApproximateLocation scope that can automatically snap all coordinates to H3 resolution-6 cells (∼3 km across). That's how an owner typically grants "yes, show where I drove, but not my driveway."
Every chart on this site is derived from data available via DIMO's public-ish GraphQL APIs. Anyone with a developer license and the owner's SACD grant can query the same data. The complete pipeline is:
telemetry-api.dimo.zone/query for signals / events / segmentsOur raw CSVs are available on the RAW DATA section of the home page.