<?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: making route for intensive points with decimal coordiantes in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/making-route-for-intensive-points-with-decimal-coordiantes/m-p/374440#M24380</link>
    <description>&lt;P&gt;thank you for swift reply!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now i must improve my coding technique on SAS &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;it s a bit hard for me because i m new on SAS Enterprise Guide&lt;/P&gt;</description>
    <pubDate>Mon, 10 Jul 2017 11:15:45 GMT</pubDate>
    <dc:creator>tevfik</dc:creator>
    <dc:date>2017-07-10T11:15:45Z</dc:date>
    <item>
      <title>making route for intensive points with decimal coordiantes</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/making-route-for-intensive-points-with-decimal-coordiantes/m-p/372573#M24278</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;i am new on sas enterprise guide (7.11 version) so that reason my question sounds silly&lt;/P&gt;&lt;P&gt;i want to make routes for field teams for intensive points. I have data-set which includes decimal points at a city and i want to define 1km diameter-length fields which includes min 60 max 80 points. &amp;nbsp;To make this i took the center point (decimal) of the city and try to calculate the distance (haversine formula) from center and later making group of them which 1km distance interval but i can not make it right. Have you any advice or how can i make the distance calculation?&amp;nbsp;&lt;/P&gt;&lt;P&gt;By the way i am using computed columns to take this action not programming. Thank you in advance&lt;/P&gt;&lt;P&gt;Note: Geodist function does not exist in 7.11 version of SAS Enterprise Guide&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE border="0" cellspacing="0" cellpadding="0"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;LATIT&lt;/TD&gt;&lt;TD&gt;LONGI&lt;/TD&gt;&lt;TD&gt;Province&lt;/TD&gt;&lt;TD&gt;City&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;36,60883&lt;/TD&gt;&lt;TD&gt;34,32703&lt;/TD&gt;&lt;TD&gt;neverland&lt;/TD&gt;&lt;TD&gt;nowhere&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;36,71302&lt;/TD&gt;&lt;TD&gt;34,33731&lt;/TD&gt;&lt;TD&gt;neverland&lt;/TD&gt;&lt;TD&gt;nowhere&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;36,45804&lt;/TD&gt;&lt;TD&gt;34,15251&lt;/TD&gt;&lt;TD&gt;neverland&lt;/TD&gt;&lt;TD&gt;nowhere&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;36,63386&lt;/TD&gt;&lt;TD&gt;34,34518&lt;/TD&gt;&lt;TD&gt;neverland&lt;/TD&gt;&lt;TD&gt;nowhere&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;36,60949&lt;/TD&gt;&lt;TD&gt;34,31894&lt;/TD&gt;&lt;TD&gt;neverland&lt;/TD&gt;&lt;TD&gt;nowhere&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;36,45832&lt;/TD&gt;&lt;TD&gt;34,14116&lt;/TD&gt;&lt;TD&gt;neverland&lt;/TD&gt;&lt;TD&gt;nowhere&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;36,55178&lt;/TD&gt;&lt;TD&gt;34,23458&lt;/TD&gt;&lt;TD&gt;neverland&lt;/TD&gt;&lt;TD&gt;nowhere&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;36,59352&lt;/TD&gt;&lt;TD&gt;34,28714&lt;/TD&gt;&lt;TD&gt;neverland&lt;/TD&gt;&lt;TD&gt;nowhere&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;</description>
      <pubDate>Sun, 02 Jul 2017 16:20:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/making-route-for-intensive-points-with-decimal-coordiantes/m-p/372573#M24278</guid>
      <dc:creator>tevfik</dc:creator>
      <dc:date>2017-07-02T16:20:11Z</dc:date>
    </item>
    <item>
      <title>Re: making route for intensive points with decimal coordiantes</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/making-route-for-intensive-points-with-decimal-coordiantes/m-p/372595#M24279</link>
      <description>&lt;P&gt;You can calculate the distances without needing the geodist function. Take a look at:&amp;nbsp;&lt;A href="http://www.sascommunity.org/wiki/Driving_Distances_and_Drive_Times_using_SAS_and_Google_Maps" target="_blank"&gt;http://www.sascommunity.org/wiki/Driving_Distances_and_Drive_Times_using_SAS_and_Google_Maps&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Then, I'd use proc modeclus to find the closest 60 or 80 points. Code is provided at:&amp;nbsp;&lt;A href="http://www.sas-programming.com/2013/05/finding-closest-pair-in-dataset-using.html" target="_blank"&gt;http://www.sas-programming.com/2013/05/finding-closest-pair-in-dataset-using.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Art, CEO, AnalystFinder.com&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 02 Jul 2017 18:16:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/making-route-for-intensive-points-with-decimal-coordiantes/m-p/372595#M24279</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2017-07-02T18:16:50Z</dc:date>
    </item>
    <item>
      <title>Re: making route for intensive points with decimal coordiantes</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/making-route-for-intensive-points-with-decimal-coordiantes/m-p/374440#M24380</link>
      <description>&lt;P&gt;thank you for swift reply!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now i must improve my coding technique on SAS &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;it s a bit hard for me because i m new on SAS Enterprise Guide&lt;/P&gt;</description>
      <pubDate>Mon, 10 Jul 2017 11:15:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/making-route-for-intensive-points-with-decimal-coordiantes/m-p/374440#M24380</guid>
      <dc:creator>tevfik</dc:creator>
      <dc:date>2017-07-10T11:15:45Z</dc:date>
    </item>
  </channel>
</rss>

