http://www.users.bigpond.com/tobbe/dl7aot.htm a 16F84 based project with source code
Elkin Dario Gonzalez Sierra of Consorcio Trunking S.A. Says:
I've been looking for the equation for finding the distance between two+
cities, given the latitude and longitude of both cities. For example: what
is the formula one would use to find the distance between San Francisco
(N37 37' 00" latitude, W122 22' 00" longitude) and Paris (N48 44' 00"
latitude, E02 23' 00" longitude.)
The equation to implement is:
A = LAT1, B = LONG1
C = LAT2, D = LONG2 (all converted to radians: degree/57.29577951)
IF A = C AND B = D THEN DISTANCE = 0;
ELSE
IF [SIN(A)SIN(C) COS(A)COS(C)COS(B-D)] > 1 THEN DISTANCE =
3963.1*ARCOS[1]; /* solved a prob I ran into. I haven't fully
analyzed it yet */
ELSE
DISTANCE=3963.1*ARCOS[SIN(A)SIN(C) COS(A)COS(C)COS(B-D)];
I'm trying to write a program for the 18F452 PIC micro that will include this distance calculation in it.
Any help that members of "The PIC List" can offer would be greatly appreciated.
Elkin Dario Gonzalez Sierra
Bogota (COLOMBIA)
file: /Techref/microchip/gps.htm, 2KB, , updated: 2005/9/26 09:18, local time: 2024/11/14 21:49,
3.135.216.29:LOG IN
|
©2024 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions? <A HREF="http://massmind.ecomorder.com/Techref/microchip/gps.htm"> PIC GPS (Global Positioning System) IO</A> |
Did you find what you needed? |
Welcome to ecomorder.com! |
Welcome to massmind.ecomorder.com! |
.