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 ...
2
votes
7answers
3k views
How to calculate distances between coordinates EFFICIENTLY in Oracle
I have a large Oracle database ( 720,000 records aprox) where each record has its own geographic coordinates (lat & lng) and i need to select just the records that are in a specific distance ...
1
vote
1answer
37 views
Is there a way to pass current speed data along with latitude and longitude using the Android emulator and 'geo fix'?
I'm currently building an Android app that uses the Android emulator to pass GPS location data, specifically the latitude, longitude, and speed. I have used a real device and everything is okay, but I ...