Skip to content

Commit

Permalink
Add a frame_id field to LocationFix
Browse files Browse the repository at this point in the history
The frame_id field for the LocationFix message specifies the frame for the origin of the sensor so the lat/lon values can be tied to a location on the robot.
  • Loading branch information
defunctzombie committed May 9, 2023
1 parent 2bde7ce commit 90d62ff
Show file tree
Hide file tree
Showing 11 changed files with 53 additions and 5 deletions.
6 changes: 6 additions & 0 deletions internal/schemas.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1228,6 +1228,12 @@ const LocationFix: FoxgloveMessageSchema = {
name: "LocationFix",
description: "A navigation satellite fix for any Global Navigation Satellite System",
fields: [
{
name: "frame_id",
type: { type: "primitive", name: "string" },
description:
"Frame for the sensor. Latitude and longitude readings are at the origin of the frame.",
},
{
name: "latitude",
type: { type: "primitive", name: "float64" },
Expand Down
3 changes: 3 additions & 0 deletions ros_foxglove_msgs/ros1/LocationFix.msg

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions ros_foxglove_msgs/ros2/LocationFix.msg

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 13 additions & 0 deletions schemas/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions schemas/flatbuffer/LocationFix.fbs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions schemas/jsonschema/LocationFix.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions schemas/jsonschema/index.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 8 additions & 5 deletions schemas/proto/foxglove/LocationFix.proto

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions schemas/ros1/LocationFix.msg

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions schemas/ros2/LocationFix.msg

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions schemas/typescript/LocationFix.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 90d62ff

Please sign in to comment.