Coordinate transforms are important because sensors measure data relative to themselves, but the robot needs all data in a common frame to understand its environment. The process starts with sensor data in the sensor frame. We apply a transform using the robot's pose to convert this data into the robot frame. Then, if needed, we transform from the robot frame to the world frame, which is a fixed reference. This allows the robot to navigate and map consistently. The example shows a point at (1, 0, 0) in sensor frame transformed to the robot frame at (1, 0, 0) using identity transform (assuming sensor aligned with robot), then transformed from robot frame to world frame using robot pose: 90-degree rotation and translation to (2, 4, 0). Understanding these steps helps avoid confusion about why data must be transformed and how the robot uses it.