<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: How to Calculate Distance and Bearing to a Latitude Longitude Waypoint in Excel</title>
	<atom:link href="http://blog.deathpod3000.com/?feed=rss2&#038;p=192" rel="self" type="application/rss+xml" />
	<link>http://blog.deathpod3000.com/?p=192</link>
	<description>Documenting the construction and programming of an autonomous r/c car</description>
	<lastBuildDate>Sat, 22 Aug 2009 12:15:47 -0700</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Carl</title>
		<link>http://blog.deathpod3000.com/?p=192&#038;cpage=1#comment-526</link>
		<dc:creator>Carl</dc:creator>
		<pubDate>Tue, 04 Aug 2009 02:21:01 +0000</pubDate>
		<guid isPermaLink="false">http://deathpod3000.wordpress.com/?p=192#comment-526</guid>
		<description>Thanks for the excel formula download. I was looking for a formula to input 2 gps coordinates and convert that to a bearing degrees. Your spreadsheet saved me a ton of time trying to figure that out!!</description>
		<content:encoded><![CDATA[<p>Thanks for the excel formula download. I was looking for a formula to input 2 gps coordinates and convert that to a bearing degrees. Your spreadsheet saved me a ton of time trying to figure that out!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kelly Brown</title>
		<link>http://blog.deathpod3000.com/?p=192&#038;cpage=1#comment-63</link>
		<dc:creator>Kelly Brown</dc:creator>
		<pubDate>Fri, 12 Jun 2009 23:19:55 +0000</pubDate>
		<guid isPermaLink="false">http://deathpod3000.wordpress.com/?p=192#comment-63</guid>
		<description>The best information i have found exactly here. Keep going Thank you</description>
		<content:encoded><![CDATA[<p>The best information i have found exactly here. Keep going Thank you</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: pushkar</title>
		<link>http://blog.deathpod3000.com/?p=192&#038;cpage=1#comment-54</link>
		<dc:creator>pushkar</dc:creator>
		<pubDate>Sat, 06 Jun 2009 10:53:20 +0000</pubDate>
		<guid isPermaLink="false">http://deathpod3000.wordpress.com/?p=192#comment-54</guid>
		<description>hi,
its very useful,infact i have been using it already.
but i m more interested in getting lat2 &amp; lon2 as output when giving
lat1,lon2,bearing from 1 to 2 &amp; distance as inputs.
Can you revise the above formulae to get that.

Pushkar</description>
		<content:encoded><![CDATA[<p>hi,<br />
its very useful,infact i have been using it already.<br />
but i m more interested in getting lat2 &amp; lon2 as output when giving<br />
lat1,lon2,bearing from 1 to 2 &amp; distance as inputs.<br />
Can you revise the above formulae to get that.</p>
<p>Pushkar</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: aliasmrjones</title>
		<link>http://blog.deathpod3000.com/?p=192&#038;cpage=1#comment-45</link>
		<dc:creator>aliasmrjones</dc:creator>
		<pubDate>Sun, 17 May 2009 21:16:24 +0000</pubDate>
		<guid isPermaLink="false">http://deathpod3000.wordpress.com/?p=192#comment-45</guid>
		<description>Good catch!  You are correct, it should read =MOD(ATAN2((COS(lat1)*SIN(lat2))-(SIN(lat1)*COS(lat2)*COS(lon2-lon1)), SIN(lon2-lon1)*COS(lat2)),2*PI().  I edited the post to correct the formula.  The formula in the spreadsheet you can download on this page was correct.

Eric</description>
		<content:encoded><![CDATA[<p>Good catch!  You are correct, it should read =MOD(ATAN2((COS(lat1)*SIN(lat2))-(SIN(lat1)*COS(lat2)*COS(lon2-lon1)), SIN(lon2-lon1)*COS(lat2)),2*PI().  I edited the post to correct the formula.  The formula in the spreadsheet you can download on this page was correct.</p>
<p>Eric</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: debbie russell</title>
		<link>http://blog.deathpod3000.com/?p=192&#038;cpage=1#comment-44</link>
		<dc:creator>debbie russell</dc:creator>
		<pubDate>Sun, 17 May 2009 20:39:36 +0000</pubDate>
		<guid isPermaLink="false">http://deathpod3000.wordpress.com/?p=192#comment-44</guid>
		<description>you give the function in excel for calculating a bearing as

=MOD(ATAN2((COS(lat1)*SIN(lat2))-(SIN(lat1)*COS(lat1)*COS(lon2-lon1)), SIN(lon2-lon1)*COS(lat2)),2*PI())

Whereas other places give it as 

=MOD(ATAN2((COS(lat1)*SIN(lat2))-(SIN(lat1)*COS(lat2)*COS(lon2-lon1)), SIN(lon2-lon1)*COS(lat2)),2*PI()

Ie. a cos(lat2) where you have given cos(lat1).  Could you possibly confirm your version is correct as at the moment I don&#039;t know what to use.

Thank you so much
This page had been very useful to me
Best wishes

Debbie Russell
University of St Andrews
UK</description>
		<content:encoded><![CDATA[<p>you give the function in excel for calculating a bearing as</p>
<p>=MOD(ATAN2((COS(lat1)*SIN(lat2))-(SIN(lat1)*COS(lat1)*COS(lon2-lon1)), SIN(lon2-lon1)*COS(lat2)),2*PI())</p>
<p>Whereas other places give it as </p>
<p>=MOD(ATAN2((COS(lat1)*SIN(lat2))-(SIN(lat1)*COS(lat2)*COS(lon2-lon1)), SIN(lon2-lon1)*COS(lat2)),2*PI()</p>
<p>Ie. a cos(lat2) where you have given cos(lat1).  Could you possibly confirm your version is correct as at the moment I don&#8217;t know what to use.</p>
<p>Thank you so much<br />
This page had been very useful to me<br />
Best wishes</p>
<p>Debbie Russell<br />
University of St Andrews<br />
UK</p>
]]></content:encoded>
	</item>
</channel>
</rss>
