Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion agency/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
This specification contains a collection of RESTful APIs used to specify the digital relationship between *mobility as a service* Providers and the Agencies that regulate them.

* Authors: LADOT
* Date: 25 Feb 2019
* Date: 19 Sep 2019
* Version: BETA

## Table of Contents
Expand Down Expand Up @@ -278,6 +278,7 @@ A standard point of vehicle telemetry. References to latitude and longitude impl
| `gps.altitude` | Double | Required if Available | Altitude above mean sea level in meters |
| `gps.heading` | Double | Required if Available | Degrees - clockwise starting at 0 degrees at true North |
| `gps.speed` | Float | Required if Available | Speed in meters / sec |
| `gps.accuracy` | Float | Required if Available | Accuracy in meters |
| `gps.hdop` | Float | Required if Available | Horizontal GPS or GNSS accuracy value (see [hdop](https://support.esri.com/en/other-resources/gis-dictionary/term/358112bd-b61c-4081-9679-4fca9e3eb926)) |
| `gps.satellites` | Integer | Required if Available | Number of GPS or GNSS satellites
| `charge` | Float | Required if Applicable | Percent battery charge of vehicle, expressed between 0 and 1 |
Expand Down
4 changes: 4 additions & 0 deletions agency/post_vehicle_event.json
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,10 @@
"type": "number",
"description": "Speed in meters/sec"
},
"accuracy": {
"type": "number",
"description": "Accuracy in meters"
},
"hdop": {
"type": "number",
"description": "Horizontal GPS or GNSS accuracy value"
Expand Down
4 changes: 4 additions & 0 deletions agency/post_vehicle_telemetry.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,10 @@
"type": "number",
"description": "Speed in meters/sec"
},
"accuracy": {
"type": "number",
"description": "Accuracy in meters"
},
"hdop": {
"type": "number",
"description": "Horizontal GPS or GNSS accuracy value"
Expand Down
4 changes: 4 additions & 0 deletions schema/templates/common.json
Original file line number Diff line number Diff line change
Expand Up @@ -232,6 +232,10 @@
"speed": {
"type": "number",
"description": "Speed in meters/sec"
},
"accuracy": {
"type": "number",
"description": "Accuracy in meters"
},
"hdop": {
"type": "number",
Expand Down