route location
Description
Provides details on the edge we are currently on or closest to in route network, along with the latitude, longitude, and altitude associated with that location
Field | datatype | Description |
---|---|---|
utime | string | Best estimate of when this message is from, host clock in UTC |
layerId | [string] | road, lane, navigation as defined by route network |
lla | [double] | latitude, longitude, altitude with respective to route network and units are degrees, degrees, meters respectively |
vehicle | string | unique vehicle name the data is associated to. |
topic | string | type of telemetry data |
Topic/channel string
For Realtime API
Pass the comma seperated topic name as a query param
/.vehicle.{vehiclename}.ROUTE_LOCATION
For Batch API - TBD
To access the Batch API, you need to include the vehicle name and topic name as path parameters in the URL.
/vehicles/{vehiclename}/topics/ROUTE_LOCATION
JSON Output
Order of fields might differ
{
"layerId": [
"-1",
"1675114393711335",
"1646063708979911"
],
"lla": [
33.60575866699219,
-112.2881317138672,
0.0
],
"topic": "ROUTE_LOCATION",
"utime": "1683642289011838",
"vehicle": "vehiclename"
}