float precision use problem
in
Programming Questions
•
1 year ago
I'm working in max/msp where you have patches and you can connect lines between objects to program (so no typing). The program is used the most to work with sound.
I receive gps data from my phone in max and i need to calculate distance. First it did this in processing cause that's far more easy. The distances i calculate are quite small (it's for walking).
In my calculation from my pc to the kitchen, dLat is -1.3315805E-7 and dLon is 1.7476995E-7 for example.
Which is something like 0.000000017476995 if i'm correct.
Is there a way to make it more precise?
I receive gps data from my phone in max and i need to calculate distance. First it did this in processing cause that's far more easy. The distances i calculate are quite small (it's for walking).
In my calculation from my pc to the kitchen, dLat is -1.3315805E-7 and dLon is 1.7476995E-7 for example.
Which is something like 0.000000017476995 if i'm correct.
Is there a way to make it more precise?
- /*
- //pc
- testP: gps 5.910325 30. 51.988632 57. 28.372467
- //keuken
- testP: gps 5.91006 10. 51.988777 19. 29.984245
- */
- void setup() {
- // println(getDistance(51.988632, 5.910325, 51.988777, 5.91006)); // pc > keuken
- // println(getDistance(51.988777, 5.910006, 51.988739, 5.910056));
- /*
- String[] lines = loadStrings("geo.tsv");
- String[] tokens = split(lines[0], "\t");
- float lon1 = float(tokens[2]);
- float lat1 = float(tokens[4]);
- for (int i = 1; i < 2; i++) { //lines.length-1
- tokens = split(lines[i+1], "\t");
- float lon2 = float(tokens[2]);
- float lat2 = float(tokens[4]);
- //println(lat2+"\t"+lon2);
- float d = getDistance(lon1, lat1, lon2, lat2);
- println(d*1000);
- }
- */
- float d = getDistance(5.910161, 51.988705, 5.910171, 51.988697);
- println(d*1000);
- }
- float getDistance(float lon1, float lat1, float lon2, float lat2) {
- int R = 6371; // Radius of the earth in km
- float dLat = radians(lat2-lat1);
- float dLon = radians(lon2-lon1);
- println("dLat: "+dLat+"\ndLon: "+dLon);
- float a = sin(dLat/2) * sin(dLat/2) + cos(radians(lat1)) * cos(radians(lat2)) * sin(dLon/2) * sin(dLon/2);
- float c = 2 * atan2(sqrt(a), sqrt(1-a));
- float d = R * c; // Distance in km
- return d;
- }
1