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
2 answers

Calculation of the Earth Station coordinates in the Earth Fixed Geocentric Coordinate System

I tried to implement a calculation to determine the Az and El angles needed to point an antenna at a given Earth Station coordinates with respect to a GEO Satellite. The source of the mathematical equations needed is a document from Intelsat which…
blast
  • 13
  • 4
0
votes
1 answer

How do you retrieve the azimuth of an Android device?

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…
user785975
  • 169
  • 1
  • 3
  • 11
0
votes
0 answers

Calculation of the angle of a point from north using pyproj

Is there a way to get of angle of a point data with respect to the North in python? So far I have tried to calculate the forward azimuth using pyproj. import pyproj from pyproj import CRS # lat long in WGS84 lat, long = (10.08079707822896,…
windcheater
  • 25
  • 1
  • 4
0
votes
1 answer

Mapping Degrees to (x,y) pixels on a 360 Image

I am looking to plot out points on a 2d spherical image from a GoPro Max given an Altitude° and an Azimuth°. Here's what you can assume: The center of the image is always facing south the image is always level looking straight at the…
FancyAM
  • 1
  • 1
0
votes
1 answer

How to Calculate Azimuth in Python

I have two points in 3d demension (x,y,z) and I want to calculate the Azimuth between then using Python3. Thanks ahead.
Naveh Elya
  • 85
  • 1
  • 7
0
votes
1 answer

Calculate Harvesine and initial bearing for successive points of a panda DataFrame in python

There are so many packages that provide this calculation although most of them are based on points and not data frames or maybe I am making a mistake! I have found this method that workers with my panda dataframe of Latitude and Longitude…
afshan
  • 13
  • 3
0
votes
1 answer

How to display a sprite on the screen in relation to the azimuth

I'm making a game on Android using SurfaceView. I'm currently receiving the azimuth of the device in degrees (from -180 to 180), which is working correctly. I want to be able to show a sprite on the screen when you turn around to it's location,…
JoeGeC
  • 187
  • 3
  • 10
0
votes
1 answer

Calculate difference in positions in Azumith measurement

I am working with azimuth and elevation data in a pandas dataframe. In this reference frame, measurements are specified from -180 to 180 in azimuth and 0 to 90 in elevation. My data points are hovering around the 180 degree mark so it also registers…
theastronomist
  • 955
  • 2
  • 13
  • 33
0
votes
1 answer

azimuth calculation in the python (without geolocation lib)

How can I calculate azimuth without importing Geodesic? (or any other kind of lib) I want to able to have the same below azi1 and azi2 results giving two geolocations as shown. >>> from geographiclib.geodesic import Geodesic >>> # The geodesic…
emily.mi
  • 161
  • 12
0
votes
1 answer

pyproj unexpectedly returns nan for azimuth (bearing)

I am trying to use pyproj inverse to get the forward bearing, backward bearing, and distance between two points, as discussed in the first answer here. However, I get 'nan' for any tries. As far as I know, I'm using the right ellipsoid. A related…
a11
  • 3,122
  • 4
  • 27
  • 66
0
votes
1 answer

Calculate path direction (azimuth) given starting and ending coordinates easily

I just trying know how to implement in objective c an equation that gave my position in lat, long and the position of a point in lat,long returns the relative angle to the azimuth so I will be able to know when to paint this point knowing the…
Gustavo
  • 785
  • 1
  • 12
  • 31
0
votes
1 answer

Has anyone implemented a function to calculate the direction of solar radiation?

I want to calculate the direction of solar radiation for every hour (that the sun is up) in the Netherlands in 2017, 2018 and 2019. I'm doing a research about the generation of solar panels, and I think this feature would add a lot to my models. I…
Maxime
  • 25
  • 5
0
votes
0 answers

Transform Equirectangular Projection to Azimuthal Projection

I am trying to transform an equirectangular projection to an azimuthal projection with python. I have found py360convert, which allows convert from equirectangular to cubemap, from which it should be easier to obtain an azimuthal projection. Does…
Diego Silvera
  • 201
  • 1
  • 2
  • 13
0
votes
1 answer

Making a circular plot of azimuth (degrees on circumfrance) vs time (distance from centre) in python

Using python, I would like to plot a series of times (e.g. seconds) against azimuth (degrees) such that the azimuth is displayed around the circumference (with North/0Deg/360Deg) at the top, and time is measured from the centre to the circumference.…
Alexander Peace
  • 113
  • 2
  • 14
0
votes
1 answer

geotools GeodeticCalculator

Having two points and a distance, I am trying to compute the azimuth and then to recompute back one of the points. However, the distance between the computed point and the original point is more then 50 meters, which is quite a big error. Here is…