We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af33835 commit c48b5c4Copy full SHA for c48b5c4
1 file changed
GEMstack/onboard/interface/gem_hardware.py
@@ -183,15 +183,9 @@ def callback_with_gnss_reading(inspva_msg: Inspva):
183
else:
184
def callback_with_gnss_reading(msg: INSNavGeod):
185
pose = ObjectPose(ObjectFrameEnum.GLOBAL,
186
-<<<<<<< HEAD
187
- t=time.time(),
188
- x=msg.longitude,
189
- y=msg.latitude,
190
-=======
191
t=self.time(),
192
x=math.degrees(msg.longitude), #Septentrio GNSS uses radians rather than degrees
193
y=math.degrees(msg.latitude),
194
->>>>>>> origin/s2025_teamB
195
z=msg.height,
196
yaw=math.radians(msg.heading), #heading from north in degrees (TODO: maybe?? check this)
197
roll=math.radians(msg.roll),
0 commit comments