Tagged Questions
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 ...
8
votes
2answers
382 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) ...
3
votes
3answers
856 views
Distance by sea calculator, intermediate coordinates?
How do I calculate distance between 2 coordinates by sea? I also want to be able to draw a route between the two coordinates.
Only solution I found so far is to split a map into pixels, identify each ...
0
votes
2answers
1k views
Geo Point vs Location
This is maybe a noob question but im not 100% sure about it.
How can i make a Location Object using Geo points? I want to use it to get the distance between two points.
I already found a thread where ...
0
votes
4answers
553 views
Longest Distance Between Lat/Longs in a List
I have a database of geocoded entries. I need to determine which two entries are the furthest apart from a subset of the total entries. For example, I select a list of 10 entries then, from that list, ...