<?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: Calculating the radius of a coordinate using PHP</title>
	<atom:link href="http://www.kevinbradwick.co.uk/2010/01/calculating-the-radius-of-a-coordinate-using-php/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.kevinbradwick.co.uk/2010/01/calculating-the-radius-of-a-coordinate-using-php/</link>
	<description>Web development and design blog</description>
	<lastBuildDate>Tue, 27 Jul 2010 11:19:33 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: Mark</title>
		<link>http://www.kevinbradwick.co.uk/2010/01/calculating-the-radius-of-a-coordinate-using-php/comment-page-1/#comment-312</link>
		<dc:creator>Mark</dc:creator>
		<pubDate>Tue, 06 Jul 2010 09:46:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.kevinbradwick.co.uk/?p=59#comment-312</guid>
		<description>Ah ok, thanks Kevin. Actually I&#039;m trying to write something using the foursquare API, and that only gives you output for a given lat/lng point - it doesn&#039;t have a function where you can pass it a range of lat/lng values. So what I&#039;m trying to do is figure out how to get the lat/lng values of 8 points around a centre - N, NE, E, SE, S, SW, W, NW - and plus those into the API instead...</description>
		<content:encoded><![CDATA[<p>Ah ok, thanks Kevin. Actually I&#8217;m trying to write something using the foursquare API, and that only gives you output for a given lat/lng point &#8211; it doesn&#8217;t have a function where you can pass it a range of lat/lng values. So what I&#8217;m trying to do is figure out how to get the lat/lng values of 8 points around a centre &#8211; N, NE, E, SE, S, SW, W, NW &#8211; and plus those into the API instead&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kevin</title>
		<link>http://www.kevinbradwick.co.uk/2010/01/calculating-the-radius-of-a-coordinate-using-php/comment-page-1/#comment-311</link>
		<dc:creator>kevin</dc:creator>
		<pubDate>Mon, 05 Jul 2010 20:18:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.kevinbradwick.co.uk/?p=59#comment-311</guid>
		<description>A radius of a lat/lng point equates to a range, so this function will give you a range of lat/lng points to query a database with.</description>
		<content:encoded><![CDATA[<p>A radius of a lat/lng point equates to a range, so this function will give you a range of lat/lng points to query a database with.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark</title>
		<link>http://www.kevinbradwick.co.uk/2010/01/calculating-the-radius-of-a-coordinate-using-php/comment-page-1/#comment-310</link>
		<dc:creator>Mark</dc:creator>
		<pubDate>Mon, 05 Jul 2010 20:16:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.kevinbradwick.co.uk/?p=59#comment-310</guid>
		<description>Am I right in thinking that this gives the lat/lng of two points then - one northeast and one southwest of a point?</description>
		<content:encoded><![CDATA[<p>Am I right in thinking that this gives the lat/lng of two points then &#8211; one northeast and one southwest of a point?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Fredrick</title>
		<link>http://www.kevinbradwick.co.uk/2010/01/calculating-the-radius-of-a-coordinate-using-php/comment-page-1/#comment-309</link>
		<dc:creator>Fredrick</dc:creator>
		<pubDate>Mon, 05 Jul 2010 13:25:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.kevinbradwick.co.uk/?p=59#comment-309</guid>
		<description>I just like to thank you for this article, it made my day!</description>
		<content:encoded><![CDATA[<p>I just like to thank you for this article, it made my day!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rich</title>
		<link>http://www.kevinbradwick.co.uk/2010/01/calculating-the-radius-of-a-coordinate-using-php/comment-page-1/#comment-243</link>
		<dc:creator>Rich</dc:creator>
		<pubDate>Thu, 01 Apr 2010 16:39:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.kevinbradwick.co.uk/?p=59#comment-243</guid>
		<description>Nevermind, thanks anyway, I&#039;ll see if I can make sense of it.</description>
		<content:encoded><![CDATA[<p>Nevermind, thanks anyway, I&#8217;ll see if I can make sense of it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kevin</title>
		<link>http://www.kevinbradwick.co.uk/2010/01/calculating-the-radius-of-a-coordinate-using-php/comment-page-1/#comment-242</link>
		<dc:creator>kevin</dc:creator>
		<pubDate>Tue, 30 Mar 2010 09:52:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.kevinbradwick.co.uk/?p=59#comment-242</guid>
		<description>@Rich,

Nope, I condensed it down to this page as there was a lot of useless info in the 3 pages I had originally written. The math invovled can be taken from the function I&#039;ve written. To use this function you&#039;ll need a database that contains all the post codes including their corresponding longitude and latitude values.</description>
		<content:encoded><![CDATA[<p>@Rich,</p>
<p>Nope, I condensed it down to this page as there was a lot of useless info in the 3 pages I had originally written. The math invovled can be taken from the function I&#8217;ve written. To use this function you&#8217;ll need a database that contains all the post codes including their corresponding longitude and latitude values.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rich</title>
		<link>http://www.kevinbradwick.co.uk/2010/01/calculating-the-radius-of-a-coordinate-using-php/comment-page-1/#comment-241</link>
		<dc:creator>Rich</dc:creator>
		<pubDate>Mon, 29 Mar 2010 18:55:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.kevinbradwick.co.uk/?p=59#comment-241</guid>
		<description>Hi, I just wondered if you still had your step by step guide available for the PHP radius of a coordinate. I noticed you had it previously and intended to have a read through it.

Cheers
Rich</description>
		<content:encoded><![CDATA[<p>Hi, I just wondered if you still had your step by step guide available for the PHP radius of a coordinate. I noticed you had it previously and intended to have a read through it.</p>
<p>Cheers<br />
Rich</p>
]]></content:encoded>
	</item>
</channel>
</rss>
