Questions tagged [azimuth]

An an angular measurement in a spherical coordinate system.

An azimuth is 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.

An example is the position of a star in the sky. The star is the point of interest, the reference plane is the horizon or the surface of the sea, and the reference vector points north. The azimuth is the angle between the north vector and the perpendicular projection of the star down onto the horizon.

Azimuth is usually measured in degrees (°). The concept is used in navigation, astronomy, engineering, mapping, mining and artillery.

Useful Links

113 questions
0
votes
1 answer

Convert azimuth to degrees

What is a generic formula for converting azimuth(from -180 to 180) to degrees(from 0 to 360)? double azimuth = (Math.toDegrees(matrixValues[0])); if(azimuth < 0){ azimuth += 360; } azimuth -= 90; …
zbz.lvlv
  • 3,597
  • 6
  • 34
  • 38
0
votes
1 answer

How to get new camera direction vector when moving an arbitrary relative angle

I am implementing a camera class and am getting stuck with some things Let's suppose the camera is at Point (0,0,0) looking at a certain direction with its corresponding UP and RIGHT vectors. I have a joystick control which allows you to go…
Jordi C.
  • 339
  • 2
  • 12
0
votes
2 answers

convert precisely azimuth degrees to human

I'm write this bit of code to convert azimuth degrees to human redable, but the conversion is not more accurate, in cases of degrees is slightly smaller than 360. function azimutHuman(ang) { //can be 0 - 360 var azimuthHumans = [ …
stefcud
  • 2,220
  • 4
  • 27
  • 37
0
votes
1 answer

How to rotate the image using sensor manager azimuth value in android?

public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); //accel sensorManager = (SensorManager) getSystemService(SENSOR_SERVICE); sensor =…
Rajesh Lawrance
  • 161
  • 3
  • 3
  • 9
0
votes
1 answer

Difference between geometry and geography in ST_Azimuth function of PostGIS

I would like to ask what is the difference between geometry and geography using the PostGIS function ST_Azimuth. When I execute the following query: SELECT degrees( ST_Azimuth(ST_MakePoint(21.304116745663165, 38.68607570952619),…
Mike Vasi
  • 467
  • 2
  • 5
  • 16
0
votes
1 answer

which value of Azimuth, Elevation and SNR to process with GPGSV NMEA message?

I was working on the parsing logic for GPS. I'm trying to parse the GPGSV message, I was able to find 12 satellite's information of 4 parameters like PRN, SNR, Azimuth and Elevation. But I'm not sure which one of these 12 values would be the valid…
sur
  • 345
  • 1
  • 3
  • 13
0
votes
4 answers

How do I calculate the Azimuth (angle to north) between two WGS84 coordinates in a single T-SQL query?

I found the solution for this question in C#, but I can't translate it to a single query T-SQL, since my C# implementation requires branching (if then else). I also found the following C# solution, which could be translated to a single query T-SQL…
Jader Dias
  • 88,211
  • 155
  • 421
  • 625
-1
votes
1 answer

Trigonometry - intersection of vector, created from azimuth and elevation, with plane

So, look at the image. I think it is self-describing what I want to achieve. The size of T is just for example. P0 can be also more up. Think the problem is, this computation counts on that the plane is perpendicular to P0 point. When B is directed…
kawon
  • 23
  • 3
1 2 3 4 5 6 7
8