<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1026432" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1026432</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/us-zipcoded-database#comment-1162229</link>
    <description> &lt;p&gt;In perl:&lt;/p&gt;
&lt;p&gt;sub great_circle_distance {&lt;br /&gt;
  my $lon_1=shift;&lt;br /&gt;
  my $lat_1=shift;&lt;br /&gt;
  my $lon_2=shift;&lt;br /&gt;
  my $lat_2=shift;&lt;/p&gt;
&lt;p&gt;	# Convert all the degrees to radians&lt;br /&gt;
	$lat_1 = &amp;amp;deg_to_rad($lat_1);&lt;br /&gt;
	$lon_1 = &amp;amp;deg_to_rad($lon_1);&lt;br /&gt;
	$lat_2 = &amp;amp;deg_to_rad($lat_2);&lt;br /&gt;
	$lon_2 = &amp;amp;deg_to_rad($lon_2);&lt;/p&gt;
&lt;p&gt;	# Find the deltas&lt;br /&gt;
	my $delta_lat = $lat_2 - $lat_1;&lt;br /&gt;
	my $delta_lon = $lon_2 - $lon_1;&lt;/p&gt;
&lt;p&gt;	# Find the Great Circle distance&lt;br /&gt;
	my $temp = sin($delta_lat/2.0)**2 + cos($lat_1) * cos($lat_2) * sin($delta_lon/2.0)**2;&lt;/p&gt;
&lt;p&gt;	# EARTH_RADIUS = 3956&lt;/p&gt;
&lt;p&gt;	my $distance = 3956 * 2 * atan2(sqrt($temp),sqrt(1-$temp));&lt;/p&gt;
&lt;p&gt;	return($distance);&lt;br /&gt;
}&lt;/p&gt;
&lt;p&gt;sub deg_to_rad {&lt;br /&gt;
 my $deg_2 = shift;&lt;br /&gt;
	my $radians = 0.0;&lt;br /&gt;
	my $pi = atan2(1,1) * 4;&lt;br /&gt;
	$radians = $deg_2 * $pi/180.0;&lt;br /&gt;
	return($radians);&lt;br /&gt;
}&lt;/p&gt;
 </description>
     <pubDate>Thu, 02 Dec 2004 15:33:59 +0000</pubDate>
 <dc:creator>eBlush_Hector</dc:creator>
 <guid isPermaLink="false">comment 1162229 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/us-zipcoded-database#comment-1160817</link>
    <description> &lt;p&gt;I did this about a year ago - let me look for it but I know I found a free one somewhere in .CSV format and it imported fine through Enterprise Manger (MSSQL). I&#039;ve also got asp code that calculates radius in miles given you have the longitude and latitude coords, it uses pi to compensate for the natural curvature of earth. Hopefully I can find it and I&#039;ll post it up here asap.&lt;/p&gt;
 </description>
     <pubDate>Wed, 27 Oct 2004 03:34:13 +0000</pubDate>
 <dc:creator>forwardtrends</dc:creator>
 <guid isPermaLink="false">comment 1160817 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/us-zipcoded-database#comment-1160200</link>
    <description> &lt;p&gt;I just recieved an e-mail today from the company that we purchased our data from. Here is their link: &lt;a href=&quot;http://www.zipinfo.com/products/products.htm&quot; class=&quot;bb-url&quot;&gt;http://www.zipinfo.com/products/products.htm&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;-Greg&lt;/p&gt;
 </description>
     <pubDate>Fri, 08 Oct 2004 19:02:38 +0000</pubDate>
 <dc:creator>Greg K</dc:creator>
 <guid isPermaLink="false">comment 1160200 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/us-zipcoded-database#comment-1160177</link>
    <description> &lt;p&gt;get teh 29 dollar one, comes in excel format or cvs....zip + 5..&lt;/p&gt;
&lt;p&gt;works great&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.zipinfo.com/products/z5/z5.htm&quot; class=&quot;bb-url&quot;&gt;http://www.zipinfo.com/products/z5/z5.htm&lt;/a&gt;&lt;/p&gt;
 </description>
     <pubDate>Fri, 08 Oct 2004 10:57:13 +0000</pubDate>
 <dc:creator>Politicalgatewa</dc:creator>
 <guid isPermaLink="false">comment 1160177 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/us-zipcoded-database#comment-1159383</link>
    <description> &lt;p&gt;I&#039;m not aware of any, but it should be pretty trivial to convert the format if necessary. For instance, the Zipwise products are in CSV format. I would imagine most database programs should be able to import a CSV file, or a tab-delimited file which would be easily created from the CSV.&lt;/p&gt;
 </description>
     <pubDate>Fri, 24 Sep 2004 13:14:24 +0000</pubDate>
 <dc:creator>OtterBob</dc:creator>
 <guid isPermaLink="false">comment 1159383 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/us-zipcoded-database#comment-1159366</link>
    <description> &lt;p&gt;Thanks guys I will look into those any SQL databases you guys might know about?&lt;/p&gt;
 </description>
     <pubDate>Thu, 23 Sep 2004 22:37:38 +0000</pubDate>
 <dc:creator>Waterlogged</dc:creator>
 <guid isPermaLink="false">comment 1159366 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/us-zipcoded-database#comment-1159357</link>
    <description> &lt;p&gt;You can try something like:&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.zipwise.com/zip-code-downloads.php&quot; class=&quot;bb-url&quot;&gt;http://www.zipwise.com/zip-code-downloads.php&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;I was trying to find the link to the one we bought, I remember I labeled the CD &quot;ProZip&quot;, the one we bought had all kinds of info. We got the one with longitude and latitude for possible future &quot;search near&quot; features.&lt;/p&gt;
&lt;p&gt;-Greg&lt;/p&gt;
 </description>
     <pubDate>Thu, 23 Sep 2004 19:43:15 +0000</pubDate>
 <dc:creator>Greg K</dc:creator>
 <guid isPermaLink="false">comment 1159357 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/us-zipcoded-database#comment-1159317</link>
    <description> &lt;p&gt;Give &lt;a href=&quot;http://www.usps.com&quot; class=&quot;bb-url&quot;&gt;http://www.usps.com&lt;/a&gt; a try. They&#039;ve got a CD you might be able to use.&lt;/p&gt;
 </description>
     <pubDate>Thu, 23 Sep 2004 10:22:18 +0000</pubDate>
 <dc:creator>OtterBob</dc:creator>
 <guid isPermaLink="false">comment 1159317 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
