Subscribe to one rover

WebSocket endpoint

URL
wss://nmea.geodnet.com/rover/v1/subscribe/:id

Headers

Authorization: Bearer Token

Header parameter

Parameter
Example
Description

Authorization

Bearer b2335d2cee91b9a4c05e4585...==

Authorization token

Request path example

id: 68a29126e2cc922e3a08ab57

Response parameter

Parameter
Example
Type
Description

code

0

Number

Status code

msg

Success

String

Status code description

data

Array

Data content

data[idx].id

68a29126e2cc922e3a08ab57

String

Rover Id

data[idx].data

$GPGGA,023617.017,...*5B\r\n

String

NMEA 0183 GGA string(s)

Response example

{
"code": 0,
"data": [
{
  "id": "68a29126e2cc922e3a08ab57",
  "data": "$GPGGA,023617.017,3723.993880,N,12159.157465,W,1,00,0.000,0,M,0,M,1.000,0001*5B\r\n"
},
{
  "id": "68a29126e2cc922e3a08ab57",
  "data": "$GPGGA,023617.017,3723.993880,N,12159.157465,W,1,00,0.000,0,M,0,M,1.000,0001*5B\r\n$GPGGA,023617.017,3723.993880,N,12159.157465,W,1,00,0.000,0,M,0,M,1.000,0001*5B\r\n"
}
]
}

Clients

- Using wscat

- Using websocat

- Using Node.js (ws)

Last updated