<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Zip Code Euclidean Distance in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Zip-Code-Euclidean-Distance/m-p/115157#M9769</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Works for me.&amp;nbsp; Here is one of the example methods shown in that paper.&amp;nbsp; The author didn't use the function, as it turned out, but the method is still appropriate.&amp;nbsp; She also doesn't indicate where &amp;amp;n came from, but I presume it was just the number of records in the file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data city_distance;&lt;/P&gt;&lt;P&gt;&amp;nbsp; keep startcity endcity distance startprojx startprojy endprojx endprojy;&lt;/P&gt;&lt;P&gt;&amp;nbsp; set locations;&lt;/P&gt;&lt;P&gt;&amp;nbsp; startx=atan(1)/45*long;&lt;/P&gt;&lt;P&gt;&amp;nbsp; starty=atan(1)/45*lat;&lt;/P&gt;&lt;P&gt;&amp;nbsp; startcity=city;&lt;/P&gt;&lt;P&gt;&amp;nbsp; /* Get the projected values for annotate */ &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; startprojx=x;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; startprojy=y;&lt;/P&gt;&lt;P&gt;&amp;nbsp; /* Get the observations for each of the cities */&lt;/P&gt;&lt;P&gt;&amp;nbsp; do i=1 to &amp;amp;num;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; set locations point=i;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; endx=atan(1)/45*long;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; endy=atan(1)/45*lat;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; endcity=city;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; endprojx=x;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; endprojy=y;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; /* If start and end are the same, delete the observation */&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if startcity = endcity then delete;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; /* Calculate distance between cities with Great Circle Distance Formula*/&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; else Distance = round(3949.99*arcos(sin(starty)*sin(endy)+ cos( starty )*cos(endy )*cos( startx - endx ) ));&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; output;&lt;/P&gt;&lt;P&gt;&amp;nbsp; end;&lt;/P&gt;&lt;P&gt;run&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 01 Nov 2012 20:13:26 GMT</pubDate>
    <dc:creator>art297</dc:creator>
    <dc:date>2012-11-01T20:13:26Z</dc:date>
    <item>
      <title>Zip Code Euclidean Distance</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Zip-Code-Euclidean-Distance/m-p/115152#M9764</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;All,&lt;/P&gt;&lt;P&gt;I am trying to figure out distance between doctors offices locations.&amp;nbsp; I have zipcode and lat/long data.&amp;nbsp; I am interested in figuring out the closest doctors to each other, for comparison in their prescribing methods (for some background on the question).&amp;nbsp; It is easy to figure out the distance between the first and second zips and then auto fill this down in excel.&amp;nbsp; But I want to know the distance between: Let A = Latitude Let B = Longitude (A&lt;SPAN style="font-size: 8pt;"&gt;i,&lt;SPAN style="font-size: 10pt;"&gt;B&lt;SPAN style="font-size: 8pt;"&gt;i&lt;SPAN style="font-size: 10pt;"&gt;) and (A&lt;SPAN style="font-size: 8pt;"&gt;k,&lt;SPAN style="font-size: 10pt;"&gt;B&lt;SPAN style="font-size: 8pt;"&gt;k&lt;SPAN style="font-size: 10pt;"&gt;) for all i,k.&amp;nbsp; I am using the Euclidean Distance formula (refresher for all those who have been out of their math classes too long :smileylaugh:) D=SQRT((A&lt;SPAN style="font-size: 8pt;"&gt;1&lt;SPAN style="font-size: 10pt;"&gt;-B&lt;SPAN style="font-size: 8pt;"&gt;1)&lt;SPAN style="font-size: 10pt;"&gt;^2&lt;/SPAN&gt;+&lt;SPAN style="font-size: 10pt;"&gt;(A&lt;SPAN style="font-size: 8pt;"&gt;2-&lt;SPAN style="font-size: 10pt;"&gt;B&lt;SPAN style="font-size: 8pt;"&gt;2&lt;SPAN style="font-size: 10pt;"&gt;)^2)&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&amp;nbsp; I have over 32 thousand zipcodes here, so I am not going to compute indivual columns in EG.&amp;nbsp; I welcome any solution here, even programming, as I can just add the programming solution to my EG flow.&amp;nbsp; Thanks!&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Nov 2012 19:24:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Zip-Code-Euclidean-Distance/m-p/115152#M9764</guid>
      <dc:creator>sasspan</dc:creator>
      <dc:date>2012-11-01T19:24:17Z</dc:date>
    </item>
    <item>
      <title>Re: Zip Code Euclidean Distance</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Zip-Code-Euclidean-Distance/m-p/115153#M9765</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Depending upon what you really want, take a look at:&lt;/P&gt;&lt;P&gt;&lt;A href="http://www2.sas.com/proceedings/sugi26/p100-26.pdf" title="http://www2.sas.com/proceedings/sugi26/p100-26.pdf"&gt;http://www2.sas.com/proceedings/sugi26/p100-26.pdf&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="active_link" href="http://support.sas.com/documentation/cdl/en/lrdict/64316/HTML/default/viewer.htm#a003113156.htm"&gt;http://support.sas.com/documentation/cdl/en/lrdict/64316/HTML/default/viewer.htm#a003113156.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/lrdict/64316/HTML/default/viewer.htm#a003113162.htm"&gt;http://support.sas.com/documentation/cdl/en/lrdict/64316/HTML/default/viewer.htm#a003113162.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Nov 2012 19:39:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Zip-Code-Euclidean-Distance/m-p/115153#M9765</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2012-11-01T19:39:35Z</dc:date>
    </item>
    <item>
      <title>Re: Zip Code Euclidean Distance</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Zip-Code-Euclidean-Distance/m-p/115154#M9766</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the reply Arthur.&amp;nbsp; I like the function of link two, I was just going to go off the scale of distance between lat/long but having it in miles would be nice.&amp;nbsp; However, the function are for two specific zip codes.&amp;nbsp; Is there a way to do it so I get an answer between all zipcodes with each other, in the whole dataset?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Nov 2012 19:45:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Zip-Code-Euclidean-Distance/m-p/115154#M9766</guid>
      <dc:creator>sasspan</dc:creator>
      <dc:date>2012-11-01T19:45:02Z</dc:date>
    </item>
    <item>
      <title>Re: Zip Code Euclidean Distance</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Zip-Code-Euclidean-Distance/m-p/115155#M9767</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There are a number of ways to automate the process to calculate all pairs.&amp;nbsp; e.g., take a look at the examples shown in the following paper: &lt;A href="http://analytics.ncsu.edu/sesug/2010/RIV03.Okerson.pdf" title="http://analytics.ncsu.edu/sesug/2010/RIV03.Okerson.pdf"&gt;http://analytics.ncsu.edu/sesug/2010/RIV03.Okerson.pdf&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Nov 2012 19:55:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Zip-Code-Euclidean-Distance/m-p/115155#M9767</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2012-11-01T19:55:00Z</dc:date>
    </item>
    <item>
      <title>Re: Zip Code Euclidean Distance</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Zip-Code-Euclidean-Distance/m-p/115156#M9768</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I can't open this link, I googled it and it won't open from google either.&amp;nbsp; hmmm, hopefully my internet starts working properly, thanks for the help!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Nov 2012 20:01:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Zip-Code-Euclidean-Distance/m-p/115156#M9768</guid>
      <dc:creator>sasspan</dc:creator>
      <dc:date>2012-11-01T20:01:14Z</dc:date>
    </item>
    <item>
      <title>Re: Zip Code Euclidean Distance</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Zip-Code-Euclidean-Distance/m-p/115157#M9769</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Works for me.&amp;nbsp; Here is one of the example methods shown in that paper.&amp;nbsp; The author didn't use the function, as it turned out, but the method is still appropriate.&amp;nbsp; She also doesn't indicate where &amp;amp;n came from, but I presume it was just the number of records in the file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data city_distance;&lt;/P&gt;&lt;P&gt;&amp;nbsp; keep startcity endcity distance startprojx startprojy endprojx endprojy;&lt;/P&gt;&lt;P&gt;&amp;nbsp; set locations;&lt;/P&gt;&lt;P&gt;&amp;nbsp; startx=atan(1)/45*long;&lt;/P&gt;&lt;P&gt;&amp;nbsp; starty=atan(1)/45*lat;&lt;/P&gt;&lt;P&gt;&amp;nbsp; startcity=city;&lt;/P&gt;&lt;P&gt;&amp;nbsp; /* Get the projected values for annotate */ &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; startprojx=x;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; startprojy=y;&lt;/P&gt;&lt;P&gt;&amp;nbsp; /* Get the observations for each of the cities */&lt;/P&gt;&lt;P&gt;&amp;nbsp; do i=1 to &amp;amp;num;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; set locations point=i;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; endx=atan(1)/45*long;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; endy=atan(1)/45*lat;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; endcity=city;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; endprojx=x;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; endprojy=y;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; /* If start and end are the same, delete the observation */&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if startcity = endcity then delete;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; /* Calculate distance between cities with Great Circle Distance Formula*/&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; else Distance = round(3949.99*arcos(sin(starty)*sin(endy)+ cos( starty )*cos(endy )*cos( startx - endx ) ));&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; output;&lt;/P&gt;&lt;P&gt;&amp;nbsp; end;&lt;/P&gt;&lt;P&gt;run&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Nov 2012 20:13:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Zip-Code-Euclidean-Distance/m-p/115157#M9769</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2012-11-01T20:13:26Z</dc:date>
    </item>
    <item>
      <title>Re: Zip Code Euclidean Distance</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Zip-Code-Euclidean-Distance/m-p/115158#M9770</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here is a simplified (?) version:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data cityzips;&lt;/P&gt;&lt;P&gt;&amp;nbsp; input zip;&lt;/P&gt;&lt;P&gt;&amp;nbsp; cards;&lt;/P&gt;&lt;P&gt;15217&lt;/P&gt;&lt;P&gt;12209&lt;/P&gt;&lt;P&gt;44101&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc sql noprint;&lt;/P&gt;&lt;P&gt;&amp;nbsp; select count(*)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; into :nrecs&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; from cityzips&lt;/P&gt;&lt;P&gt;&amp;nbsp; ;&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data city_distance (drop=i j k zips:);&lt;/P&gt;&lt;P&gt;&amp;nbsp; array zips(&amp;amp;nrecs.);&lt;/P&gt;&lt;P&gt;&amp;nbsp; do i=1 to &amp;amp;nrecs.;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; set cityzips;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; zips(i)=zip;&lt;/P&gt;&lt;P&gt;&amp;nbsp; end;&lt;/P&gt;&lt;P&gt;&amp;nbsp; do j=1 to &amp;amp;nrecs.;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; set cityzips;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; do k=1 to &amp;amp;nrecs.;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if zip ne zips(k) then do;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; compare_zip=zips(k);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; distance=zipcitydistance(zip,compare_zip);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; output;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; end;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; end;&lt;/P&gt;&lt;P&gt;&amp;nbsp; end;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Nov 2012 01:06:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Zip-Code-Euclidean-Distance/m-p/115158#M9770</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2012-11-02T01:06:03Z</dc:date>
    </item>
    <item>
      <title>Re: Zip Code Euclidean Distance</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Zip-Code-Euclidean-Distance/m-p/115159#M9771</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you! Sorry it took so long, just got back on the forum now.&amp;nbsp; I really appreciate your help!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Nov 2012 14:30:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Zip-Code-Euclidean-Distance/m-p/115159#M9771</guid>
      <dc:creator>sasspan</dc:creator>
      <dc:date>2012-11-02T14:30:49Z</dc:date>
    </item>
    <item>
      <title>Re: Zip Code Euclidean Distance</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Zip-Code-Euclidean-Distance/m-p/115160#M9772</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you have actual lat and long you might look at the GEODIST function which should be more precise than the ZIPCITYDISTANCE. And if your lat / long measurements are degrees such a 38.45 no conversion of units is needed.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Nov 2012 15:09:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Zip-Code-Euclidean-Distance/m-p/115160#M9772</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2012-11-02T15:09:23Z</dc:date>
    </item>
    <item>
      <title>Re: Zip Code Euclidean Distance</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Zip-Code-Euclidean-Distance/m-p/115161#M9773</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;Thanks, I have actual lat/long...I appreciate it&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Nov 2012 15:12:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Zip-Code-Euclidean-Distance/m-p/115161#M9773</guid>
      <dc:creator>sasspan</dc:creator>
      <dc:date>2012-11-02T15:12:10Z</dc:date>
    </item>
    <item>
      <title>Re: Zip Code Euclidean Distance</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Zip-Code-Euclidean-Distance/m-p/115162#M9774</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;FWIW the reference for geodist is the third link to my original response and the function can be included in the same methodology as suggested in my last post.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Nov 2012 15:32:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Zip-Code-Euclidean-Distance/m-p/115162#M9774</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2012-11-02T15:32:41Z</dc:date>
    </item>
    <item>
      <title>Re: Zip Code Euclidean Distance</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Zip-Code-Euclidean-Distance/m-p/115163#M9775</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes I saw that link....just thanking everyone. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Nov 2012 15:46:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Zip-Code-Euclidean-Distance/m-p/115163#M9775</guid>
      <dc:creator>sasspan</dc:creator>
      <dc:date>2012-11-02T15:46:52Z</dc:date>
    </item>
  </channel>
</rss>

