Configure an NTRIP-based RTK GPS with a Serial Connection
Stability Notice
The gps-nmea-rtk-serial
model is an experimental feature.
Stability is not guaranteed.
Breaking changes are likely to occur, and occur often.
A global positioning system (GPS) receives signals from satellites in the earth’s orbit to determine where it is and how fast it is going.
All supported GPS models provide data for the Position
, CompassHeading
and LinearVelocity
methods.
You can obtain fix and correction data by using the sensor GetReadings
method, which is available because GPSes wrap the sensor component.
The gps-nmea-rtk-serial
and gps-nmea-rtk-pmtk
movement sensor models support NTRIP-based real time kinematic positioning (RTK) GPS units (such as these).
The chip requires a correction source to get to the required positional accuracy.
The gps-nmea-rtk-serial
model uses an over-the-internet correction source and sends the data over a serial connection to the board.
Tip
If your movement sensor uses I2C communication instead of serial, use the gps-nmea-rtk-pmtk
model.
Navigate to the Config tab of your robot’s page in the Viam app.
Click on the Components subtab and click Create component.
Select the movement-sensor
type, then select the gps-nmea-rtk-serial
model.
Enter a name for your movement sensor and click Create.

Edit and fill in the attributes as applicable.
{
"components": [
{
"name": "<your-sensor-name>",
"type": "movement_sensor",
"model": "gps-nmea-rtk-serial",
"attributes": {
"serial_path": "<path_to_serial_port>",
"serial_baud_rate": <int>,
"ntrip_connect_attempts": <int>,
"ntrip_mountpoint": "<identifier>",
"ntrip_password": "<password for NTRIP server>",
"ntrip_url": "<URL of NTRIP server>",
"ntrip_username": "<username for NTRIP server>"
},
"depends_on": [],
}
]
}
{
"components": [
{
"name": "my_GPS",
"type": "movement_sensor",
"model": "gps-nmea-rtk-serial",
"attributes": {
"board": "local",
"serial_path": "/dev/serial/by-path/ttyS0",
"serial_baud_rate": 115200,
"ntrip_connect_attempts": 12,
"ntrip_mountpoint": "MNTPT",
"ntrip_password": "pass",
"ntrip_url": "http://ntrip/url",
"ntrip_username": "usr"
},
"depends_on": []
}
]
}
The following attributes are available for a gps-nmea-rtk-pmtk
movement sensor:
Name | Type | Inclusion | Description |
---|---|---|---|
serial_path | string | Required | The full filesystem path to the serial device, starting with sudo dmesg | grep tty to show relevant device connection log messages, and then match the returned device name, such as ttyS0 , to its device file, such as |
serial_baud_rate | int | Optional | The rate at which data is sent from the sensor. Default: 38400 |
ntrip_url | string | Required | The URL of the NTRIP server from which you get correction data. Connects to a base station (maintained by a third party) for RTK corrections. |
ntrip_username | string | Optional | Username for the NTRIP server. |
ntrip_password | string | Optional | Password for the NTRIP server. |
ntrip_connect_attempts | int | Optional | How many times to attempt connection before timing out. Default: 10 |
ntrip_mountpoint | string | Optional | If you know of an RTK mountpoint near you, write its identifier here. It will be appended to NTRIP address string (for example, “nysnet.gov/rtcm/NJMTPT1”) and that mountpoint’s data will be used for corrections. |
Tip
How you connect your device to an NTRIP server varies by geographic region. You will need to research the options available to you. If you are not sure where to start, check out this GPS-RTK2 Hookup Guide from SparkFun.
Test the movement sensor
After you configure your movement sensor, navigate to the Control tab and select the dedicated movement sensor dropdown panel. This panel presents the data collected by the movement sensor. The sections in the panel include the position, orientation, angular velocity, linear velocity, and linear acceleration.

Have questions, or want to meet other people working on robots? Join our Community Discord.
Was this page helpful?
Glad to hear it! If you have any other feedback please let us know:
We're sorry about that. To help us improve, please tell us what we can do better:
Thank you!