<?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: SGMAP of JCP Penney store closings in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/SGMAP-of-JCP-Penney-store-closings/m-p/657541#M20032</link>
    <description>&lt;P&gt;One suggestion:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Looks nice!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;One thought: Since the bubble_size has no contribution from the original data, perhaps use a SCATTER plot instead, with a symbol of CIRCLEFILLED. You can use the SIZE option in MARKERATTRS to adjust the size like you want.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;    proc sgmap plotdata=plotdata;
      openstreetmap;
      scatter x=x y=y / group=status markerattrs=(symbol=circlefilled);
    run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 11 Jun 2020 14:30:42 GMT</pubDate>
    <dc:creator>DanH_sas</dc:creator>
    <dc:date>2020-06-11T14:30:42Z</dc:date>
    <item>
      <title>SGMAP of JCP Penney store closings</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/SGMAP-of-JCP-Penney-store-closings/m-p/657515#M20031</link>
      <description>&lt;P&gt;I do not work for JCP nor own stock in JCP.&amp;nbsp; June 4, 2020 I saw various news feeds reporting JCP was planning to close stores in 2020.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;From the &lt;A href="https://companyblog.jcpnewsroom.com/storeclosings/" target="_self"&gt;company blog&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;&lt;SPAN&gt;JCPenney made the difficult decision to close 154 stores.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;What does that look like from a mapping standpoint ?&lt;/P&gt;
&lt;DIV class="branch"&gt;
&lt;DIV&gt;
&lt;DIV class="l"&gt;
&lt;DIV id="tinyMceEditorRichardADeVenezia_0" class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="JCP store closings announced June 4, 2020" style="width: 900px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/42711i939461E8DC40057F/image-size/large?v=v2&amp;amp;px=999" role="button" title="JCP store closings announced June 4, 2020.png" alt="JCP store closings announced June 4, 2020" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;JCP store closings announced June 4, 2020&lt;/span&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Attached program shows how the data for the map was retrieved from public information, matched and classified&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Store locator
&lt;UL&gt;
&lt;LI&gt;Scrape and crawl
&lt;UL&gt;
&lt;LI&gt;&lt;CODE&gt;Proc HTTP, INPUT&amp;nbsp;@, PRXCHANGE&lt;/CODE&gt;&lt;/LI&gt;
&lt;LI&gt;No external HTML DOM parsing&lt;/LI&gt;
&lt;/UL&gt;
&lt;/LI&gt;
&lt;LI&gt;Addresses, Latitude and Longitude&lt;/LI&gt;
&lt;/UL&gt;
&lt;/LI&gt;
&lt;LI&gt;Company blog list of closings
&lt;UL&gt;
&lt;LI&gt;Addresses&lt;/LI&gt;
&lt;/UL&gt;
&lt;/LI&gt;
&lt;LI&gt;The match for 'closing' status assigned using SQL UPDATE and existential where sub-query&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;Map drawn with snippet&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;    proc sgmap plotdata=plotdata;
      openstreetmap;
      bubble x=x y=y size=bubble_size / group=status;
    run;&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The store data is attached for later use when web content may no longer be present, accessible or contextually accurate (this post wise).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;</description>
      <pubDate>Thu, 11 Jun 2020 13:37:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/SGMAP-of-JCP-Penney-store-closings/m-p/657515#M20031</guid>
      <dc:creator>RichardDeVen</dc:creator>
      <dc:date>2020-06-11T13:37:25Z</dc:date>
    </item>
    <item>
      <title>Re: SGMAP of JCP Penney store closings</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/SGMAP-of-JCP-Penney-store-closings/m-p/657541#M20032</link>
      <description>&lt;P&gt;One suggestion:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Looks nice!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;One thought: Since the bubble_size has no contribution from the original data, perhaps use a SCATTER plot instead, with a symbol of CIRCLEFILLED. You can use the SIZE option in MARKERATTRS to adjust the size like you want.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;    proc sgmap plotdata=plotdata;
      openstreetmap;
      scatter x=x y=y / group=status markerattrs=(symbol=circlefilled);
    run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jun 2020 14:30:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/SGMAP-of-JCP-Penney-store-closings/m-p/657541#M20032</guid>
      <dc:creator>DanH_sas</dc:creator>
      <dc:date>2020-06-11T14:30:42Z</dc:date>
    </item>
  </channel>
</rss>

