I planned to calculate the angle of the phone relative to the Earth’s magnetic field. For this, I planned to use Sensor.TYPE_GEOMAGNETIC_ROTATION_VECTOR. The Geomagnetic Rotation Vector explains that event.valuesreturns the same value as in the Rotation the Vector , which,
- x * sin (θ / 2),
- y * sin (θ / 2),
- z * sin (θ / 2),
- owls (θ / 2)
What are the x, y, z values in the above values? Using these values Can I calculate the angles between the X axis of the phone and the X axis of the globe, the Y axis of the phone and the Y axis of the earth, and the Z axis of the phone and the Z axis of the earth?
PS: θ is described as the angle θ around the axis (x, y or z)

