Distance is a numerical description of how far apart objects are.

learn more… | top users | synonyms

19
votes
9answers
20k views

Calculate distance in meters when you know longitude and latitude in java [closed]

Possible Duplicate: Working with latitude/longitude values in Java Duplicate: Working with latitude/longitude values in Java How do I calculate distance between two latitude longitude ...
16
votes
7answers
418 views

Approximate, incremental nearest-neighbour algorithm for moving bodies

Bounty This question raises several issues. The bounty will go to an answer which addresses them holistically. Here's a problem I've been playing with. NOTE I'm especially interested in solutions ...
15
votes
9answers
4k views

Algorithm to find two points furthest away from each other

Im looking for an algorithm to be used in a racing game Im making. The map/level/track is randomly generated so I need to find two locations, start and goal, that makes use of the most of the map. ...
15
votes
14answers
4k views

What is the quickest way to find the shortest cartesian distance between two polygons

I have 1 red polygon say and 50 randomly placed blue polygons - they are situated in geographical 2D space. What is the quickest/speediest algorithim to find the the shortest distance between a red ...
14
votes
8answers
1k views

Algorithm for finding nearby points?

Given a set of several million points with x,y coordinates, what is the algorithm of choice for quickly finding the top 1000 nearest points from a location? "Quickly" here means about 100ms on a home ...
13
votes
3answers
517 views

Given r^2, is there an efficient way to compute r^3?

double r2 = dx * dx + dy * dy; double r3 = r2 * sqrt(r2); Can the second line be replaced by something faster? Something that does not involve sqrt?
11
votes
8answers
10k views

Calculating distance between zip codes in PHP

I grabbed a database of the zip codes and their langitudes/latitudes, etc from this This page. It has got the following fields: ZIP, LATITUDE, LONGITUDE, CITY, STATE, COUNTY, ZIP_CLASS The data ...
11
votes
8answers
5k views

What pre-existing services exist for calculating distance between two addresses?

I'd like to implement a way to display a list of stored addresses sorted by proximity to a given address. Addresses in the list will be stored in a database table. Separate parts have separate ...
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 ...
10
votes
4answers
663 views

Programmatical approach in Java for file comparison

What would be the best approach to compare two hexadecimal file signatures against each other for similarities. More specifically, what I would like to do is to take the hexadecimal representation ...
10
votes
4answers
4k views

How can i calculate the distance between two gps points in Java?

I used this code but it doesnt work: Need the distance between two gps coordinates like 41.1212, 11.2323 in kilometers (Java) double d2r = (180 / Math.PI); double distance = 0; try{ double ...
9
votes
2answers
85 views

Internationalization of distances in java

Is it possible in Java without any extra library to internationalize distances? I mean it is possible to handle that with date, time, currencies, numbers... I would have expected to find a ...
9
votes
2answers
870 views

Camera focus distances

I'm trying to read the focus distance (distance of subject in a photo) from an Android camera. I keep getting 0 for all focus distances on my HTC Desire even when it correctly autofocuses. Here's the ...
8
votes
2answers
380 views

Find all coordinates within a circle in geographic data in python

I've got millions of geographic points. For each one of these, I want to find all "neighboring points," i.e., all other points within some radius, say a few hundred meters. There is a naive O(N^2) ...
8
votes
5answers
707 views

Distance between tiles in a hexagonal field

For a square field the distance between tile A and B it's just a vector length: distance = sqrt(sqr(x1-x2))+sqr(y1-y2)) How do I get the length of one of shortest paths between two tiles as ...
8
votes
4answers
1k views

Distance between two android phones

I'm wondering: other than GPS location, is there any way to find if two phones is within a certain distance from each other? For example, if one phone is under 3 feet from another one, as GPS is not ...
8
votes
4answers
2k views

Calculate distance between two x/y coordinates?

I would like to calculate the distance between two x/y coordinates on the surface of a torus. So, this is a normal grid that has the property that its corners and sides are 'connected'. For example, ...
8
votes
8answers
856 views

Optimized method for calculating cosine distance in Python

I wrote a method to calculate the cosine distance between two arrays: def cosine_distance(a, b): if len(a) != len(b): return False numerator = 0 denoma = 0 denomb = 0 for i ...
8
votes
5answers
872 views

2D Game: Fast(est) way to find x closest entities for another entity - huge amount of entities, highly dynamic

I'm working on a 2D game that has a huge amount of dynamic entities. For fun's sake, let's call them soldiers, and let's say there are 50000 of them (which I just randomly thought up, it might be much ...
7
votes
3answers
557 views

Computing sparse pairwise distance matrix in R

I have a NxM matrix and I want to compute the NxN matrix of Euclidean distances between the M points. In my problem, N is about 100,000. As I plan to use this matrix for a k-nearest neighbor ...
7
votes
2answers
406 views

how to calculate all pairwise distances in two dimensions

Say I have data concerning the position of animals on a 2d plane (as determined by video monitoring from a camera directly overhead). For example a matrix with 15 rows (1 for each animal) and 2 ...
7
votes
7answers
2k views

Calculate distance between Zip Codes… AND users

This is more of a challenge question than something I urgently need, so don't spend all day on it guys. I built a dating site (long gone) back in 2000 or so, and one of the challenges was calculating ...
7
votes
5answers
5k views

Geospatial coordinates and distance in kilometers… (updated again)

This is a followup to this question. I seem to be stuck on this. Basically, I need to be able to convert back and forth to referring to coordinates either in the standard degree system OR by ...
6
votes
2answers
178 views

Operations “intra” & “inter” lists

Please Consider the following : lesDisques={{14.2065, 10.609, 0.974938}, {19.5653, 6.92721, 0.974938}, {30.4607,17.4802, 0.974938}, {27.4621, 10.0393, 0.974938}, {15.915, ...
6
votes
2answers
167 views

Fastest available algorithm for distance transform

I am looking for the fastest available algorithm for distance transform. According to this site http://homepages.inf.ed.ac.uk/rbf/HIPR2/distance.htm, it describes: "The distance transform can be ...
6
votes
2answers
150 views

calculate distance between regression line and datapoint

I wonder if there is a way to calculate the distance between a abline in a plot and a datapoint? For example, what is the distance between concentration == 40 with signal == 643 (element 5) and the ...
6
votes
2answers
160 views

Compute distance in Cartesian Coordinate System in Mathematica

Analyzing Eye-movements on a screen, I set my origin to the bottom left corner of it (Hard to modify at that point). Trying to compute distance between some points and the center of the screen I use ...
6
votes
4answers
255 views

Effectively selecting the closest (distance) record from a database

I've got a database with a 40k venues and growing right now. Assuming I'm the red dot I want to be able to retrieve the closest record as quickly as possible. However the distance too the next ...
6
votes
3answers
299 views

Queries to find places within a given lat/lng

So I'm trying to display lists of places within a range of the given lat/lng. I have no problem with this: Places within one mile (list of places...) Using something like SELECT * FROM places WHERE ...
6
votes
1answer
1k views

Android: compass + distance in a listview

I guess you have all tried "Google Places" in Maps. This is a list of POI close to you. I really would like to do the same feature in my application with a list of GPS coordinates, but that seem ...
6
votes
3answers
7k views

How to add markers on Google Maps polylines based on distance along the line?

I am trying to create a Google Map where the user can plot the route he walked/ran/bicycled and see how long he ran. The GPolyline class with it’s getLength() method is very helpful in this regard (at ...
6
votes
3answers
782 views

Fastest way to find the closest point to a given point in 3D, in Python

So lets say I have 10,000 points in A and 10,000 points in B and want to find out the closest point in A for every B point. Currently, I simply loop through every point in B and A to find which one ...
6
votes
5answers
3k views

How to calculate distance between two places? Is there any service available by Google Map for iphone?

I want to put facility to display distance between two places selected by user. Is there any sample source code / service available to do so? Thanks in advance.
6
votes
4answers
3k views

How to calculate distance from a point to a line segment, on a sphere?

I have a line segment (great circle part) on earth. The line segment is defined by the coordinates of its ends. Obviously, two points define two line segments, so assume I am interested in the shorter ...
6
votes
6answers
2k views

String distance library

I need to measure the distance between two strings (names of places). Since some times the names are written slightl differently I was looking for a library that could help me measure the difference ...
6
votes
11answers
4k views

Finding Cities within 'X' Kilometers (or Miles)

This may or may not be clear, leave me a comment if I am off base, or you need more information. Perhaps there is a solution out there already for what I want in PHP. I am looking for a function ...
6
votes
1answer
5k views

Android : Location.distanceTo not working correctly?

I am having an issue calculating distance using the Location.distanceTo method. private class MyLocationOverlay1 extends MyLocationOverlay { @Override public void drawMyLocation(Canvas ...
5
votes
3answers
107 views

Algorithm to find point of minimum total distance from locations

I'm building an application based around finding a "convenient meeting point" given a set of locations. Currently I'm defining "convenient" as "minimising the total travel distance". This is a ...
5
votes
2answers
77 views

Distance approximation?

I am doing pathfinding on a 2D grid. I need to calculate distance as one of my heuristics. Furthermore I need to return the closest spot if the full path is not found. Calculating the exact ...
5
votes
5answers
164 views

Python: speeding up geographic comparison

I've written some code that includes a nested loop where the inner loop is executed about 1.5 million times. I have a function in this loop that I'm trying to optimize. I've done some work, and got ...
5
votes
3answers
288 views

Trilateration with limits?

I'm in need of help solving an issue, the problem came up doing one of my small robot experiments, the basic idea, is that each little robot has the ability to approximate the distance, from ...
5
votes
1answer
262 views

Measuring distance along ellipse

Suppose we have an ellipse x^2/a^2 + y^2/b^2 . Taking a point (a*cos(t),b*sint(t)) on the ellipse, what is the fastest way to find another point on the ellipse such that distance between them is a ...
5
votes
2answers
2k views

Measuring distance with iPhone camera

How to implement a way to measure distances in real time (video camera?) on the iPhone, like this app that uses a card to compare the size of the card with the actual distance? Are there any other ...
5
votes
4answers
420 views

package for geocoding (street location!) and next calculation of distance

EDIT: And package for not geographical distance between two lan-long points, but distance by car, or foot (like this http://code.google.com/intl/sk/apis/maps/documentation/directions/) Travel mode - ...
5
votes
2answers
1k views

Calculate 100 meter distance when the latitude and longitude is a known point

I want to know if it is possible to calculate a 100 meter distance around a given point with a known latitude and longitude. I have some coordinates in a MySQL database and want to know if a specific ...
5
votes
6answers
316 views

How to make sure iterators do not overpass end()?

I have been using advance on some iterators, but I am afraid of a possible leapfrog above end(). I would like to make sure my iterators stay between the bounds, I thought of the distance but it seems ...
5
votes
3answers
684 views

Determine distance from coastline in Matlab

In MATLAB, I have an array of latitude and longitude pairs that represents locations in the United States. I need to determine the distance to the nearest coastline. I think MATLAB has a built in ...
5
votes
2answers
2k views

Android - Distance between two Cities

I need in my Android Application the Distance and the Driving Time between Two cities. Is there a possibility to calculate this things for example via Google Navigator or Google Maps? (the driving ...
5
votes
4answers
655 views

Find the closest locations to a given address

I have built an application in CakePHP that lists businesses. There are about 2000 entries, and the latitude and longitude coordinates for each business is in the DB. I now am trying to tackle the ...
5
votes
3answers
665 views

SQL Server distance search

I have a Microsoft SQL Server database with a table of Locations. Each location has its address and latitude and longitude coordinates. In my application, the user can input a zipcode and we return a ...

1 2 3 4 5 9