Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

17
votes
4answers
5k views

Android phone orientation overview including compass

I've been trying to get my head around the Android orientation sensors for a while. I thought I understood it. Then I realised I didn't. Now I think (hope) I have a better feeling for it again but I ...
10
votes
4answers
3k views

Haversine Formula in Python (Bearing and Distance between two GPS points)

I would like to know how to get the distance and bearing between 2 GPS points. I have researched on the haversine formula and someone told me that I could find the bearing as well with it. Excuse my ...
7
votes
4answers
6k views

Calculate compass bearing / heading to location in Android

I want to display an arrow at my location on a google map view that displays my direction relative to a destination location (instead of north). a) I have calculated north using the sensor values ...
4
votes
4answers
192 views

How to find the average of a set of bearings [closed]

Possible Duplicate: How do you calculate the average of a set of angles? If I have a set of bearings, ranging from 1-360, how can I find the average? Usually to find the average one would ...
4
votes
1answer
3k views

How can I draw an Arrow showing the driving direction in MapView?

I use that Google Maps component MapView in an Android application. I can use the GPS location to show my location with a dot. But I would like to show an arrow instead, that points out the driving ...
3
votes
1answer
349 views

Get lat/long given current point, distance and bearing

I've seen this asked a few times and I feel like a dunce for having to ask it again, but: Given an existing point in lat/long, distance in (in KM) and bearing (in degrees converted to radians), I ...
3
votes
2answers
81 views

How longitudinal width will impact Bearing

EDIT: For the most part I have figured this out using a formula that describes the changes in longitudinal width depending on your latitude. Link to wikipedia article. Now I haveto figure out how the ...
3
votes
6answers
10k views

Calculating coordinates given a bearing and a distance

I am having problems implementing the function described here here. This is my Java implementation: private static double[] pointRadialDistance(double lat1, double lon1, double radianBearing, ...
3
votes
5answers
2k views

Geoalgorithm for finding coordinates of point from a known location by distance and bearing

I'd like to use Google maps static API to display a map with a path overlay indicating a boundary. AFAICT the static API doesn't support polygons, so I intend to circumvent this by drawing the ...
2
votes
2answers
726 views

Rotate Matrix for bitmap - Android

I have a custom map (canvas) that I am drawing a map pointer on. I am updating it in my onLocationChanged method of my main class, however I am struggling to get the bitmap to rotate. getBearing() ...
1
vote
1answer
54 views

Relative position of latlon points

I'm currently involved in a project where it'd be useful to display geographical points as overlays on top of a VIDEO element (size 512x288). The VIDEO element contains a live broadcast, and I also ...
1
vote
0answers
67 views

Location.distanceBetween() gives continuously changing distance and bearing values

My code requires to find the distance between two Tablets and the direction of second Tablet with reference to the first one. Both the Tabs update their location every 10 seconds. But the distance as ...
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
0answers
491 views

Using Compass to point to actual coordinate location instead of just North

I have seen a few examples of this but am not sure exactly how to implement it, (such as iPhone Compass GPS Direction) in do I need to call calcBearingWithLatitude in (void)startup? All I am trying ...
1
vote
2answers
856 views

Bearing between two points

Ive been using the geopy package , which does a great job, however some of the results i get are inconsistant or come with a relatively large displacement, i suspect that the problem resides with my ...
1
vote
1answer
621 views

What scale is initial bearing in returned from Location.distanceBetween()

When calling Location.distanceBetween() and getting the initial and final bearing, what scale is the bearing in? I'm getting negative values, which doesn't make sense to me. Bearing goes from 0 to ...
0
votes
1answer
49 views

How to visualise an arrow pointing to a certain coordinates(latitude, longitude), given pich and yaw

I would like to know how to visualise an arrow pointing to a certain coordinates(latitude, longitude) while I'm moving around holding my handset. I'va calculated the pitch and yaw of the desired ...
0
votes
1answer
30 views

Getting point.x for a location with a bearing near 0

I'm developing my own augmented reality engine. In this tutorial I've found how to display a point on screen using its bearing, iPhone screen size and camera field of view: + (CGPoint) ...
0
votes
0answers
48 views

To caculate a destination coordinate from a one coordinate and heading information

If I Have information with one coordinate(lat, lon) and true heading degree in iPhone, how can I find a destination coordinate from this? ex) starting coordinate2D: 37.6009, 126.8647 true ...
0
votes
0answers
56 views

Android Compass(on a Canvass) snapping back 360 degrees in the opposite direction

We have made a small compass application. We draw the compass on a canvas, and rotate the canvas accordingly (with its rotate function). It draws fine, and rotates fine. HOWEVER, when you make a ...
0
votes
1answer
138 views

How to compute hypotenuse and bearing

I got the below code from @DanS at this link how-to-display-a-map-still-image-file-with-a-moving-current-location onCurrentPosition(Location current){ double hypotenuse = ...
0
votes
0answers
159 views

Calculating Initial Bearing between 2 points fails but final bearing works

I am sending in two coordinates and attempting to calculate both the initial bearing and final bearing between them. My code is below and the result of this code is appended below. My initial ...
0
votes
0answers
254 views

Android: How to draw a canvas line using the bearing of a given location?

http://imageshack.us/photo/my-images/821/bearingarrow.png/ I would like to do something like shown in the picture linked above. Draw a canvas line with the dates that I already have. I have the ...
0
votes
2answers
745 views

calculating a gps coordinate given a point, bearing and distance

I have a problem which draws my back in some project for some time now. Im basically looking to trap a polygon using x,y points drawn by some script ive written. lat1,lon1 are the center gps cords of ...
0
votes
0answers
397 views

iPhone Compass GPS Direction [closed]

Possible Duplicate: iPhone Compass GPS Direction Hi, I'm trying to develop an application that use the GPS and Compass of the iPhone in order to point some sort of pointer to a specific ...