<?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 How to read shapefiles in SAS in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/How-to-read-shapefiles-in-SAS/m-p/775326#M22168</link>
    <description>&lt;P&gt;&lt;SPAN&gt;How does SAS read shapefiles data? &amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;
&lt;P class="src grammarSection" data-group="1-1"&gt;I have four map files:&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Phoenix_LJ_0-1634713872848.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/64871iAFCCBD4DADFA4171/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Phoenix_LJ_0-1634713872848.png" alt="Phoenix_LJ_0-1634713872848.png" /&gt;&lt;/span&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P class="src grammarSection" data-group="1-1"&gt;How does SAS create a map from these files!!!&lt;/P&gt;
&lt;P class="src grammarSection highlight" data-group="1-1"&gt;Thank you in advance for your information !!!&lt;/P&gt;</description>
    <pubDate>Wed, 20 Oct 2021 07:32:33 GMT</pubDate>
    <dc:creator>Phoenix_LJ</dc:creator>
    <dc:date>2021-10-20T07:32:33Z</dc:date>
    <item>
      <title>How to read shapefiles in SAS</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-read-shapefiles-in-SAS/m-p/775326#M22168</link>
      <description>&lt;P&gt;&lt;SPAN&gt;How does SAS read shapefiles data? &amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;
&lt;P class="src grammarSection" data-group="1-1"&gt;I have four map files:&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Phoenix_LJ_0-1634713872848.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/64871iAFCCBD4DADFA4171/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Phoenix_LJ_0-1634713872848.png" alt="Phoenix_LJ_0-1634713872848.png" /&gt;&lt;/span&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P class="src grammarSection" data-group="1-1"&gt;How does SAS create a map from these files!!!&lt;/P&gt;
&lt;P class="src grammarSection highlight" data-group="1-1"&gt;Thank you in advance for your information !!!&lt;/P&gt;</description>
      <pubDate>Wed, 20 Oct 2021 07:32:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-read-shapefiles-in-SAS/m-p/775326#M22168</guid>
      <dc:creator>Phoenix_LJ</dc:creator>
      <dc:date>2021-10-20T07:32:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to read shapefiles in SAS</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-read-shapefiles-in-SAS/m-p/775380#M22169</link>
      <description>&lt;A href="https://blogs.sas.com/content/graphicallyspeaking/2021/03/09/sas-graphs-for-r-programmers-maps-from-shapefiles/" target="_blank"&gt;https://blogs.sas.com/content/graphicallyspeaking/2021/03/09/sas-graphs-for-r-programmers-maps-from-shapefiles/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://blogs.sas.com/content/graphicallyspeaking/2018/11/29/proc-sgmap-series-plot-importing-shapefiles-and-using-proc-gproject/" target="_blank"&gt;https://blogs.sas.com/content/graphicallyspeaking/2018/11/29/proc-sgmap-series-plot-importing-shapefiles-and-using-proc-gproject/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;And calling @RobertAllison_SAS</description>
      <pubDate>Wed, 20 Oct 2021 12:16:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-read-shapefiles-in-SAS/m-p/775380#M22169</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2021-10-20T12:16:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to read shapefiles in SAS</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-read-shapefiles-in-SAS/m-p/775623#M22172</link>
      <description>&lt;P&gt;Use Proc Mapimport.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here's an example of the code - all you have to do is tell it where the .shp file is located ...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc mapimport&lt;BR /&gt;&amp;nbsp; &amp;nbsp;datafile='C:\temp\&lt;STRONG&gt;polygon.shp&lt;/STRONG&gt;'&lt;BR /&gt;&amp;nbsp; &amp;nbsp;out=my_map;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Oct 2021 12:07:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-read-shapefiles-in-SAS/m-p/775623#M22172</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2021-10-21T12:07:10Z</dc:date>
    </item>
  </channel>
</rss>

