Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

26
votes
4answers
580 views

Position of the sun given time of day, latitude and longitude

This question has been asked before a little over three years ago. There was an answer given, however I've found a glitch in the solution. Code below is in R. I've ported it to another language, ...
16
votes
10answers
8k views

Position of the sun given time of day, and lat/long

Anyone want to share some nice code that gives the position of the sun (elevation and azimuth) given latitude and longitude and time of day ? And date, of course.
2
votes
3answers
422 views

Combine Gyroscope with accelerometer to get heading

I'm using an Android device to get the heading(azimuth, or yaw angle). Android API used the Accelerometer value + the mganetic field to compute a matrix rotation, the azimuth is then extracted form ...
2
votes
1answer
153 views

Determine building your Android device is pointing at

I have a MapView in which I am drawing buildings on using geopoints. Currently, the app determines the closest building to you by just checking your long/lat and comparing to the buildings; but what I ...
1
vote
2answers
179 views

Sun's position, equation of time: WRONG BY 27 DAYS

I'm trying to improve the U.S. Naval Observatory's algorithm for calculating the position of the sun, by writing it in a simpler way where all the numbers used have been properly identified - so ...
1
vote
0answers
105 views

Android: Implement azimuth orientation sliding view

I am trying to create a ruler view based on azimuth compass orientation value. The idea is to place a small view at the bottom of a camera view which slides to the left or to the right according to ...
1
vote
1answer
323 views

Azimuth/Bearing calculation in objective-c

I have been trying this formula to obtain the azimut/bearing of two points of the map. I mean, to obtain the real north direction of the vector done with the two coordinates. θ ...
1
vote
2answers
973 views

C code for solar azimuth angle given date, time, lat, and long

I seem to have asked my question wrong so here goes again I'll try to be more to the point. Is the top answer on this page ...
0
votes
0answers
28 views

SensorManager.getOrientationMatrix how is it calculated?

I would like to know if someone can explain me how is calculate the orientationMatrix that the method SensorManager.getOrientationMatrix(accel, magnetic) produce ? Thank you
0
votes
1answer
222 views

get the compass direction from azimuth: android

I have to display which direction the user is pointing the android device. I am using Sensor.TYPE_ACCELEROMETER, Sensor.TYPE_MAGNETIC_FIELD to get the azimuth, pitch, roll. But I am to able to figure ...
0
votes
1answer
75 views

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 ...
0
votes
1answer
180 views

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 ...
0
votes
1answer
250 views

Point to direction of a GPS position

I got the azimuth of a point, the compass heading and an api which can set an arrow to a certain direction (0 is top, 90 is right, 180 is bottom, 360 is top) how i calculate the correct value for the ...
0
votes
1answer
262 views

How do I update the azimuth of orientation of the Android emulator? [closed]

Possible Duplicate: Can I emulate a compass on Android I'm developing an Android application whose display depends on the orientation (azimuth specifically) of the phone. I'd like to test ...
0
votes
4answers
1k views

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, ...