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 ...
1
vote
0answers
104 views

Geo-fencing…is location within fence?

I'm writing a server side java application that takes location updates from an android device. The device is traveling along a route and I want to be able to determine if it had arrived at its ...
1
vote
1answer
58 views

Multiple Points Along Line between two known Geo Coords?

I have a Java project to plot properties to geo co-ords. It does not need to be super accurate, within 10+ metres is fine. I have searched Haversine formulas, and midpoint formulas, but I can't see ...
1
vote
2answers
541 views

java api for simple gis computations

I am trying to develop some simple location logic in the server-side portion of a java servlet-based webapp. There are really just two operations that I'm interested in: Given a start point ...