Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

30
votes
4answers
16k views

MySQL Great Circle Distance (Haversine formula)

I've got a PHP script that gets Longitude and Latitude values...then inputs them into a MySQL query. I'd really like to make it solely MySQL. Live site can be found at http://MotoListr.com Here's ...
5
votes
1answer
310 views

Weird Great Circle Distance calculation

I have some problems with a great circle distance calculation using a map. Context: http://airports.palzkill.de/search/ The map is supposed to work as a great circle distance search map - you move ...
5
votes
2answers
1k views

Is it possible to implement the Haversine formula in Objective-C and call it from SQLite?

As I understand, SQLite doesn't have the math functions to properly implement the Haversine formula in straight SQL. I'm thinking this should be possible using an external function, with the ...
4
votes
4answers
2k views

Great Circle Distance question

I am familiar with the formula to calculate the Great Circle Distance between two points. i.e. <?php $theta = $lon1 - $lon2; $dist = sin(deg2rad($lat1)) * sin(deg2rad($lat2)) + ...
2
votes
2answers
370 views

Drawing Great Circle overlay lines on an MKMapView

I'm trying to draw a Great Circle line between two lat/lon points on an MKMapView. This is a line that would appear rounded (a 'straight' line on a globe) and is best visualized here. In fact this ...
2
votes
3answers
366 views

Great Circle Distance Formula: T-SQL

So I have a table with a bunch of different addresses in it. I need a proc that will select the addresses in that table that are within a specified distance in miles from the passed in lat/long ...
2
votes
3answers
338 views

Minimum bounding rectangle of a circle on a sphere

What R packages are available to calculate the minimum bounding box for a great circle? For example: box <- polycirc( c( longitude, latitude ), distance=35 ) This would return the bounding box ...
2
votes
5answers
660 views

If I am here and heading towards there and I've covered this much ground, where am I?

I need help writing the following method: def get_new_location(current_location, target_location, distance_travelled): ... ... return new_location where all locations are (lat,long) I ...
1
vote
1answer
43 views

SQL error for great circle calculation

I was searching stackoverflow and got an answer to my question, but when I tried to implement it with my code I got weird errors. here is the code: SELECT `zip_code`, (6371 * ...
1
vote
3answers
130 views

How to calculate shortest route?

I have a list of 80 towns each with their geographical longitude and latitude. I need to find the shortest closed route (taking into account the curvature of the earth). I was thinking I could ...
1
vote
2answers
490 views

Map GPS Coordinates to an Image and draw some GPS Points on it

I have some problems figuring out where my error is. I got the following: Have an image and corresponding GPS coordinates of its top-left and bottom-right vertices. E.g: topLeft.longitude = ...
1
vote
3answers
815 views

Need a standalone Java library for performing spatial calculations on lat/lon data

I'm looking for a Java library that is capable of performing spatial calculations on sets of lat/lon data. Here are some of the functions that I'm looking for: Calculate the Great Circle distance ...
1
vote
2answers
1k views

Distance from Point To Line great circle function not working right.

I need to get the distance from a lat/lng point to a line. Of course needs to follow the Great Circle. I found a great article on this at http://www.movable-type.co.uk/scripts/latlong.html but the ...
0
votes
0answers
4 views

Find destination lat/long coordinate using displacement in x and y

Say I have an observer looking at a particular direction (x, y, z), and I know the distance in each direction of an object relative to the observer (vector lengths). How would I find the lat/long of ...
0
votes
2answers
88 views

How to check if a point(lonc,latc) lie on a great circle running from (lona,lata) to (lonb,latb) [closed]

I'm trying to produce a boolean method that will return true if a point (lonc,latc) lies on a great circle arc starting at (lona,lata) and ending at (lonb,latb) the point of the method returning true ...
0
votes
1answer
84 views

How to calculate a longitude and latitude at a given distance along a great circle?

I'm wondering if anyone can help me. I'm working on a project for my MSc in which I plan to over lay great circle arcs between aiports on a 3d map using longitudes and latitudes. I can already get the ...
0
votes
2answers
300 views

MySQL Great Circle intersection (do two roads cross?)

MySQL OpenGIS CROSSES doesn't seem to work for me: SET @ls = 'LineString(1 1, 2 2, 3 3)'; SET @xx = 'LineString(0 2, 10 2)'; # SELECT AsText(EndPoint(GeomFromText(@ls))); select ...
0
votes
2answers
841 views

Great Circle & Rhumb line intersection

I have a Latitude, Longitude, and a direction of travel in degrees true north. I would like to calculate if I will intersect a line defined by two more Lat/Lon points. I figure the two points ...
0
votes
3answers
711 views

complex math with great circle formula

I have a from location (latitude, longitude) and to location (latitude, longitude). After calculating, it should show me what would be the nearest way to go from using a compass. The following is PHP ...