mcgill-robotics / AUV-2025

Software running on Douglas AUV for 2024 RoboSub competition
GNU General Public License v3.0
22 stars 3 forks source link

fix waterlinked drive frame REP 103 compliance #617

Closed MrMondrian closed 4 weeks ago

MrMondrian commented 2 months ago

The pose topic from the waterlinked driver is not REP 103 compliant. The velocity topic is so don't worry about that. If you want to add the dvl's dead reckon estimation to the EKF this will need to be fixed. To do this, rotate the quaternion and position by q:{w:0,x:1,y:0,z:0}. In more mathematical terms, apply the hamilton product to the dead reckon quaternion/position using that quaternion i just provided. the quaternion.rotate_vectors function can be used for the vector, but you need to manually do the hamilton product for the quaternion

when i say not rep 103 compliant i mean the z component of the reference frame is facing down not up (should be up)

hamilton product