Skip to content

Commit f9bdac1

Browse files
authored
Unflipped northing and easting to match firmware (#116)
1 parent 7c9e218 commit f9bdac1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rb_ws/src/buggy/scripts/serial/ros_to_bnyahaj.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ def reader_thread(self):
164164

165165
# TODO: Not mock rolled accurately (Needs to be Fact Checked)
166166
try:
167-
lat, long = World.utm_to_gps(packet.y, packet.x)
167+
lat, long = World.utm_to_gps(packet.x, packet.y)
168168
odom.pose.pose.position.x = long
169169
odom.pose.pose.position.y = lat
170170
odom.twist.twist.angular.z = packet.heading_rate

0 commit comments

Comments
 (0)