<?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: Plotting color-coded coordinates in GMAP in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/Plotting-color-coded-coordinates-in-GMAP/m-p/539736#M7111</link>
    <description>this will tell you, check the log.&lt;BR /&gt;&lt;BR /&gt;proc product_status;run;</description>
    <pubDate>Fri, 01 Mar 2019 18:26:33 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2019-03-01T18:26:33Z</dc:date>
    <item>
      <title>Plotting color-coded coordinates in GMAP</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Plotting-color-coded-coordinates-in-GMAP/m-p/539726#M7108</link>
      <description>&lt;P&gt;I am trying to create individual state maps (starting with Maine) with color-coded points mapped out using X-Y coordinates. &amp;nbsp;The data set I am using for the points has X and Y coordinates, along with a specified color for the points to be used in the map.&amp;nbsp; This data set also has the same state code used in the map data set.&amp;nbsp; Below is my code.&amp;nbsp; I get no errors, but when I get to GMAP it only draws the state without the points from the anno set.&amp;nbsp; Any help would be appreciated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;data Maine;
   set mapsgfk.Us_states;
   if state =stfips("ME");
run;

data prop;   set ME_MFH2;
xsys='2'; ysys='2'; hsys='3'; when='a';
function='pie'; rotate=360; size=1.0;
style='psolid'; color=color; output;
run;

proc gproject data=prop
              degrees
              out=propg
              parmentry=mapsgfk.Us_states
              dupok;
   id;
run;


pattern value=mempty color=blue ;
proc gmap
data=maine map=maine  all
anno=propg ;
id state;
choro state /  nolegend;
run;
quit;&lt;/PRE&gt;</description>
      <pubDate>Fri, 01 Mar 2019 17:56:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Plotting-color-coded-coordinates-in-GMAP/m-p/539726#M7108</guid>
      <dc:creator>RandoDando</dc:creator>
      <dc:date>2019-03-01T17:56:40Z</dc:date>
    </item>
    <item>
      <title>Re: Plotting color-coded coordinates in GMAP</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Plotting-color-coded-coordinates-in-GMAP/m-p/539728#M7109</link>
      <description>What version of SAS do you have?SGMAPs produces better quality graphics.</description>
      <pubDate>Fri, 01 Mar 2019 17:59:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Plotting-color-coded-coordinates-in-GMAP/m-p/539728#M7109</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-03-01T17:59:33Z</dc:date>
    </item>
    <item>
      <title>Re: Plotting color-coded coordinates in GMAP</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Plotting-color-coded-coordinates-in-GMAP/m-p/539730#M7110</link>
      <description>I'm using SAS EG 7.13, not sure which version of SAS is on the Metadata server.</description>
      <pubDate>Fri, 01 Mar 2019 18:01:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Plotting-color-coded-coordinates-in-GMAP/m-p/539730#M7110</guid>
      <dc:creator>RandoDando</dc:creator>
      <dc:date>2019-03-01T18:01:23Z</dc:date>
    </item>
    <item>
      <title>Re: Plotting color-coded coordinates in GMAP</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Plotting-color-coded-coordinates-in-GMAP/m-p/539736#M7111</link>
      <description>this will tell you, check the log.&lt;BR /&gt;&lt;BR /&gt;proc product_status;run;</description>
      <pubDate>Fri, 01 Mar 2019 18:26:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Plotting-color-coded-coordinates-in-GMAP/m-p/539736#M7111</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-03-01T18:26:33Z</dc:date>
    </item>
    <item>
      <title>Re: Plotting color-coded coordinates in GMAP</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Plotting-color-coded-coordinates-in-GMAP/m-p/539737#M7112</link>
      <description>9.4</description>
      <pubDate>Fri, 01 Mar 2019 18:28:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Plotting-color-coded-coordinates-in-GMAP/m-p/539737#M7112</guid>
      <dc:creator>RandoDando</dc:creator>
      <dc:date>2019-03-01T18:28:17Z</dc:date>
    </item>
    <item>
      <title>Re: Plotting color-coded coordinates in GMAP</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Plotting-color-coded-coordinates-in-GMAP/m-p/539745#M7116</link>
      <description>&lt;P&gt;I would suggest that you examine the maximum and minimum values the X and Y variables of your Maine map data set and then separately the same for the annotate dataset Propg.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The parmentry data set you use in the Gproject, parmentry=mapsgfk.Us_states, will have a significantly different range of values than the Maine only set extracted from the US_states data set.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So I suspect that the annotate values may fall outside of Maine after projection. By any chance does you log show any message about such happening?&lt;/P&gt;</description>
      <pubDate>Fri, 01 Mar 2019 19:03:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Plotting-color-coded-coordinates-in-GMAP/m-p/539745#M7116</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2019-03-01T19:03:01Z</dc:date>
    </item>
    <item>
      <title>Re: Plotting color-coded coordinates in GMAP</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Plotting-color-coded-coordinates-in-GMAP/m-p/539750#M7117</link>
      <description>&lt;P&gt;After some more searching I came across this, and the example seemed to work (all the prior examples I saw were doing things far more complex than what I needed).&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="http://support.sas.com/rnd/datavisualization/mapsonline/html/geocode_gmap.html" target="_blank"&gt;http://support.sas.com/rnd/datavisualization/mapsonline/html/geocode_gmap.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now, that I have the big part over with I am down to aesthetics.&amp;nbsp; The example used stars are the point symbols, but I prefer solid dots.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is the original code copied from the link using stars:&lt;/P&gt;&lt;PRE&gt;data prop;   set ME_MFH2;
xsys='2'; ysys='2'; hsys='3'; when='a';
x= -x *(atan(1)/45);
y = y* (atan(1)/45);
function = 'label';
style    = 'special';
text     = 'M';     
color    = color ;              
size     = 2;                        
position = '5';                      
run;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;The TEXT = 'M' specifies stars with the style selected.&amp;nbsp; I've tried putting in 'U' for dots, but I get all sorts of strange symbols on my map.&amp;nbsp; &amp;nbsp;Any idea on how to get the solid dots symbol to work?&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 01 Mar 2019 19:20:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Plotting-color-coded-coordinates-in-GMAP/m-p/539750#M7117</guid>
      <dc:creator>RandoDando</dc:creator>
      <dc:date>2019-03-01T19:20:55Z</dc:date>
    </item>
  </channel>
</rss>

