Docs

GPS

GPS position data format, gps:info message type

PropertyValue
Technical Message Typegps:info
Information TypeTelemetry
FormatProtobuf
Protobuf Schemaagrirouter.technicalmessagetype.GPSList
TypeURLtypes.agrirouter.com/agrirouter.technicalmessagetype.GPSList

The gps:info message type is deprecated. For new integrations, send GPS position data in EFDI TimeLog messages (iso:11783:-10:time_log:protobuf) instead.

EFDI (Device Description & TimeLog)4 min

Overview

The GPS message type carries a list of GPS position records. Each record includes coordinates, altitude, accuracy metrics, and status information.

GPS messages use Protobuf directly: they are not Base64-encoded.

Message Structure

A GPSList message contains a list of GPS position entries, each with the following fields:

FieldTypeDescription
position_northdoubleLatitude in WGS84 degrees
position_eastdoubleLongitude in WGS84 degrees
position_upsint64Altitude in millimeters
position_statusenumGPS fix quality (see table below)
pdopdoublePosition Dilution of Precision
hdopdoubleHorizontal Dilution of Precision
number_of_satellitesint32Number of satellites used for the fix
gps_utc_timestamptimestampUTC timestamp of the GPS reading
field_statusenumField context status (see table below)

Position Status

The position_status enum indicates the quality of the GPS fix.

ValueNameDescription
0D_NO_GPSNo GPS signal available
1D_GNSSStandard GNSS fix
2D_DGNSSDifferential GNSS fix
3D_PRECISE_GNSSPrecise GNSS fix
4D_RTK_FINTEGERRTK fixed integer solution
5D_RTK_FLOATRTK float solution
6D_EST_DR_MODEEstimated (dead reckoning) mode
7D_MANUAL_INPUTManually entered position
8D_SIMULATE_MODESimulated position
9–13RESERVEDReserved for future use
14D_ERRORGPS error state
15D_NOT_AVAILABLEGPS status not available

Field Status

The field_status enum provides context about the machine's location relative to a field.

ValueNameDescription
0FS_UNKNOWNUnknown (default)
1FS_INFIELDMachine is working in a field
2FS_ONROADMachine is traveling on a road
3FS_OFFROADMachine is off-road but not in a field

On this page