Difference between revisions of "AppInventor: Menghitung Jarak dan Arah dari GPS"

From OnnoWiki
Jump to navigation Jump to search
(New page: Sumber: https://sites.google.com/site/appinventor/distance-based-on-lat-long distance = sqrt(x2 + y2) Dimana: x = 69.1 * (lat2 - lat1) y = 69.1 * (lon2 - lon1) * cos(lat1/57.3) =...)
 
Line 1: Line 1:
 
Sumber: https://sites.google.com/site/appinventor/distance-based-on-lat-long
 
Sumber: https://sites.google.com/site/appinventor/distance-based-on-lat-long
  
  distance = sqrt(x2 + y2)
+
  distance = sqrt(x^2 + y^2)
  
 
Dimana:
 
Dimana:

Revision as of 17:03, 10 October 2015

Sumber: https://sites.google.com/site/appinventor/distance-based-on-lat-long

distance = sqrt(x^2 + y^2)

Dimana:

x = 69.1 * (lat2 - lat1)
y = 69.1 * (lon2 - lon1) * cos(lat1/57.3) 


Referensi