@@ -125,7 +125,7 @@ class GetCompassHeadingResponse(google.protobuf.message.Message):
125
125
DESCRIPTOR : google .protobuf .descriptor .Descriptor
126
126
VALUE_FIELD_NUMBER : builtins .int
127
127
value : builtins .float
128
- 'A number from 0-359 where\n 0 is North, 90 is East, 180 is South, and 270 is West\n '
128
+ 'A number from 0-359 in degrees where\n 0 is North, 90 is East, 180 is South, and 270 is West\n '
129
129
130
130
def __init__ (self , * , value : builtins .float = ...) -> None :
131
131
...
@@ -163,7 +163,9 @@ class GetOrientationResponse(google.protobuf.message.Message):
163
163
164
164
@property
165
165
def orientation (self ) -> common .v1 .common_pb2 .Orientation :
166
- ...
166
+ """Orientation is returned as an orientation message with
167
+ OX OY OZ as unit-normalized components of the axis of the vector, and Theta in degrees
168
+ """
167
169
168
170
def __init__ (self , * , orientation : common .v1 .common_pb2 .Orientation | None = ...) -> None :
169
171
...
@@ -205,7 +207,9 @@ class GetPositionResponse(google.protobuf.message.Message):
205
207
206
208
@property
207
209
def coordinate (self ) -> common .v1 .common_pb2 .GeoPoint :
208
- ...
210
+ """Position is returned in a coordinate of latitute and longitude
211
+ and an altidue in meters
212
+ """
209
213
altitude_m : builtins .float
210
214
211
215
def __init__ (self , * , coordinate : common .v1 .common_pb2 .GeoPoint | None = ..., altitude_m : builtins .float = ...) -> None :
0 commit comments