-
Notifications
You must be signed in to change notification settings - Fork 0
Custom Messages Ref
Ben Brenkman edited this page Jan 30, 2019
·
7 revisions
Messages are how data is sent between nodes. If you want to publish or subscribe to a custom data format, you will need to create a custom message. This page is a reference to show the data structure and names for all custom messages we create. I have made an example message called coord
; I will demonstrate the structure of this page below. If you create a new message, just match the format and document it here.
A reference for the .msg format can be found here.
Data Type | Name |
---|---|
int32 | x |
int32 | y |
int32 | z |
Data Type | Name |
---|---|
float64 | latitude |
float64 | longitude |
float64 | altitude |
float64 | accuracy |
float64 | speed |
float64 | speed_accuracy |