Skip to content

Automated Protos Update #410

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 28, 2023
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ class GetCompassHeadingResponse(google.protobuf.message.Message):
DESCRIPTOR: google.protobuf.descriptor.Descriptor
VALUE_FIELD_NUMBER: builtins.int
value: builtins.float
'A number from 0-359 where\n 0 is North, 90 is East, 180 is South, and 270 is West\n '
'A number from 0-359 in degrees where\n 0 is North, 90 is East, 180 is South, and 270 is West\n '

def __init__(self, *, value: builtins.float=...) -> None:
...
Expand Down Expand Up @@ -163,7 +163,9 @@ class GetOrientationResponse(google.protobuf.message.Message):

@property
def orientation(self) -> common.v1.common_pb2.Orientation:
...
"""Orientation is returned as an orientation message with
OX OY OZ as unit-normalized components of the axis of the vector, and Theta in degrees
"""

def __init__(self, *, orientation: common.v1.common_pb2.Orientation | None=...) -> None:
...
Expand Down Expand Up @@ -205,7 +207,9 @@ class GetPositionResponse(google.protobuf.message.Message):

@property
def coordinate(self) -> common.v1.common_pb2.GeoPoint:
...
"""Position is returned in a coordinate of latitute and longitude
and an altidue in meters
"""
altitude_m: builtins.float

def __init__(self, *, coordinate: common.v1.common_pb2.GeoPoint | None=..., altitude_m: builtins.float=...) -> None:
Expand Down