Skip to content
Snippets Groups Projects
Commit 176daba6 authored by Adrien van den Bossche's avatar Adrien van den Bossche
Browse files

Update README.md

parent 8f26bef7
No related branches found
No related tags found
No related merge requests found
...@@ -190,11 +190,11 @@ Transport of GNSS coordinates. Altitude and DOP are optionnal. ...@@ -190,11 +190,11 @@ Transport of GNSS coordinates. Altitude and DOP are optionnal.
| 1B | 4B | 4B | 0/4B | 0/4B | | 1B | 4B | 4B | 0/4B | 0/4B |
|----------|-------------|-------------|------------|-------| |----------|-------------|-------------|------------|-------|
| `header` | `latitude` | `longitude` | `altitude` | `dop` | | `header` | `latitude` | `longitude` | `altitude` | `dop` |
The `latitude` field is a C-type float and is mandatory. The `latitude` field is a C-type float and is mandatory if the `valid_gnss_position` flag is set
The `longitude` field is a C-type float and is mandatory The `longitude` field is a C-type float and is mandatory if the `valid_gnss_position` flag is set
The `altitude` field is a C-type float and its presence is annouced in the `header` The `altitude` field is a C-type float and its presence is annouced in the `header`
...@@ -202,14 +202,16 @@ The `dop` field is a C-type float and its presence is annouced in the `header` ...@@ -202,14 +202,16 @@ The `dop` field is a C-type float and its presence is annouced in the `header`
##### Header ##### Header
| 1b | 1b | 6b | | 1b | 1b | 1b | 6b |
|--------------------------|---------------------|----------| |--------------------------|---------------------|-----------------------|----------|
| `altitude_presence_flag` | `dop_presence_flag` | reserved | | `altitude_presence_flag` | `dop_presence_flag` | `valid_gnss_position` | reserved |
The `altitude_presence_flag` must be set to 1 if the `altitude` field is present in the packet. The `altitude_presence_flag` must be set to 1 if the `altitude` field is present in the packet.
The `dop_presence_flag` must be set to 1 if the `dop` field is present in the packet. The `dop_presence_flag` must be set to 1 if the `dop` field is present in the packet.
The `valid_gnss_position` must be set to 1 if the `latitude` and `longitude` fields are present in the packet.
#### Type 2 : Locally referenced localisation #### Type 2 : Locally referenced localisation
Transport of locally referenced 2D or 3D localisation. The "repère" is identified by an UID. Transport of locally referenced 2D or 3D localisation. The "repère" is identified by an UID.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment