Question

Azimuth is defined by Wikipedia as:

An angular measurement in a spherical coordinate system. The vector from an observer (origin) to a point of interest is projected perpendicularly onto a reference plane; the angle between the projected vector and a reference vector on the reference plane is called the azimuth.

How can I get this value on Android?

Was it helpful?

Solution

float [] orientation = SensorManager.getOrientation();
float azimuth = orientation[0];

See also: SensorManager.getOrientation(...);

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top