Skip to main content

Getting Started with High-Frequency Telematics

Published July 20, 2026 · Written by Operations Lead

To connect hardware to STOMP, developers need to point OBD-II or AIS-140 GPRS units to the STOMP endpoint URL. The devices communicate via TCP/UDP sockets or HTTPS, sending location updates containing speed, latitude, longitude, and engine stats.

Once GPRS streams are pointing to the STOMP gateway, import the client SDK to configure listener hooks:

import { StompTelemetry } from "@stomp/sdk";

const telemetry = new StompTelemetry({
  gatewayUrl: "https://telemetry.stomp.adawnix.in"
});

telemetry.subscribe("vehicle-01", (ping) => {
  updateUIMarker(ping.latitude, ping.longitude);
});