<?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>GraphGuy Tracker</title>
    <link>https://communities.sas.com/kntur85557/tracker</link>
    <description>GraphGuy Tracker</description>
    <pubDate>Wed, 13 May 2026 23:18:42 GMT</pubDate>
    <dc:date>2026-05-13T23:18:42Z</dc:date>
    <item>
      <title>Re: Proc gmap questions</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Proc-gmap-questions/m-p/986556#M25893</link>
      <description>&lt;P&gt;Typically, you would not want to merge your data with the map dataset.&lt;/P&gt;
&lt;P&gt;I would recommend merging it with mapsgfk.world_attr (which contains 1 observation per country) instead.&lt;/P&gt;</description>
      <pubDate>Mon, 20 Apr 2026 15:18:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Proc-gmap-questions/m-p/986556#M25893</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2026-04-20T15:18:41Z</dc:date>
    </item>
    <item>
      <title>Re: gmap version of maps.counties that uses Connecticut planning regions instead of counties</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/gmap-version-of-maps-counties-that-uses-Connecticut-planning/m-p/986555#M25892</link>
      <description>&lt;P&gt;When using the new CT imported from the shapefile, it is already projected, there you will not need to run the "proc gproject" on it (unless you want some other projection, in which case you can use Jeff's suggestion to deproject and get the lat/long values, so you can re-project it using any projection you want).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is a simple example of importing the shapefile, and plotting the already-projected map:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc mapimport datafile="/home/u59782200/data/CT_Planning_Regions/CT_Planning_Regions.shp" out=raw_ct;
run;

proc gmap data=raw_ct map=raw_ct;
id ObjectID;
choro planningRE;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="foo.png" style="width: 800px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/114322i4C09F4C07F3054F6/image-size/large?v=v2&amp;amp;px=999" role="button" title="foo.png" alt="foo.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also, I notice that your title mentions &lt;STRONG&gt;maps.counties.&lt;/STRONG&gt;&amp;nbsp;Note that the 'maps' library is the old/legacy SAS maps (perhaps from 1996 vintage), and you'll probably want to use the latest 'mapsgfk' library instead (for your maps other than CT). Specifically &lt;STRONG&gt;mapsgfk.us_counties&lt;/STRONG&gt; (the dataset label indicates this map is based on 2021 map data in the version of SAS I'm using).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Apr 2026 15:08:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/gmap-version-of-maps-counties-that-uses-Connecticut-planning/m-p/986555#M25892</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2026-04-20T15:08:26Z</dc:date>
    </item>
    <item>
      <title>Re: GPLOT: Graphing Title, label text not visible after WPS version upgrade</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/GPLOT-Graphing-Title-label-text-not-visible-after-WPS-version/m-p/986540#M25891</link>
      <description>&lt;P&gt;The goptions ctitle and ctext "should" be controlling your title and text, but I'm suspecting it is somehow coming out white on a white background instead.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Perhaps try specifying the color on the title statement itself, and see if that makes a difference, such as ...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;TITLE1 color=red "test title";&lt;/PRE&gt;</description>
      <pubDate>Mon, 20 Apr 2026 13:47:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/GPLOT-Graphing-Title-label-text-not-visible-after-WPS-version/m-p/986540#M25891</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2026-04-20T13:47:29Z</dc:date>
    </item>
    <item>
      <title>Re: proc gplot-2 vars</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/proc-gplot-2-vars/m-p/975942#M25678</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
length yymm $4;
input YYMM Y :percent8.2;
format y percent8.2;
datalines;
2201 0.18%
2202 0.19%
2203 0.22%
2204 0.04%
2205 0.23%
2206 0.27%
2207 0.26%
2208 0.04%
2209 0.06%
2210 0.09%
2211 0.03%
2212 0.04%
2301 0.03%
2302 5.3%
;

data want; set have;
length date_string $8;
date_string='20'||trim(left(yymm))||'15';
format  sasdate yymmn4.;
sasdate = input(date_string,yymmdd8.);

proc print data=want; 
format sasdate date9.;

axis1 label=none minor=none offset=(0,0) order=(0 to .1 by .01);
axis2 label=('YYMM') offset=(2pct,2pct)
 order=('15jan2022'd to '15feb2023'd by month);

symbol1 value=circle height=2pct color=blue;

title1 h=5pct "Values, by Month";

proc gplot data=want;
format y percentn7.0;
plot y*sasdate/
 autovref lvref=33 cvref=gray33
 vaxis=axis1
 haxis=axis2
;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="yymm.png" style="width: 800px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/110228i430E7D0AE05071C0/image-size/large?v=v2&amp;amp;px=999" role="button" title="yymm.png" alt="yymm.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Sep 2025 13:30:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/proc-gplot-2-vars/m-p/975942#M25678</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2025-09-29T13:30:24Z</dc:date>
    </item>
    <item>
      <title>Re: Cleaning up a 3D chart</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Cleaning-up-a-3D-chart/m-p/975940#M25677</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt; data have;
input ID Greetings;
datalines;
1 1
2 1 
3 1 
4 1
5 1
6 1
7 1
8 1
9 1
10 1
11 1
12 2
13 2
14 2
15 3
16 3
17 3
18 3
19 3
20 3
21 3
22 .
23 .
24 .
25 2
;
 
Proc format;
Value Gre
1 = 'Hello'
2 = 'Hi'
3 = 'Dear'
;

axis1 label=none minor=none order=(0 to 60 by 20) offset=(0,0);

axis2 label=('Type of Greeting') offset=(9,9);

pattern1 color=cyan;

title1 h=6pct font='albany amt/bold'  "Customized 3d Chart";

proc Gchart Data=have;
Format Greetings Gre. ;
vbar3d Greetings / 
 discrete space=7pct width=5pct
 raxis=axis1 autoref cref=gray33 lref=33 
 maxis=axis2
 type=percent
 outside=percent statfmt=comma5.0
 ;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="3d_bar.png" style="width: 800px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/110227i91525F81FC90B67C/image-size/large?v=v2&amp;amp;px=999" role="button" title="3d_bar.png" alt="3d_bar.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Sep 2025 13:06:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Cleaning-up-a-3D-chart/m-p/975940#M25677</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2025-09-29T13:06:15Z</dc:date>
    </item>
    <item>
      <title>Re: SAS color names:  Why is "Blue Green" not the same as "Green Blue"?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/SAS-color-names-Why-is-quot-Blue-Green-quot-not-the-same-as-quot/m-p/952587#M25170</link>
      <description>&lt;P&gt;If you care about your colors, and want them to look consistent no matter what type of output you're creating (png, svg, java, activex, javaimg, actximg, pdf, etc) ... I suggest always using the hex rgb color codes.&lt;/P&gt;</description>
      <pubDate>Thu, 05 Dec 2024 00:59:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/SAS-color-names-Why-is-quot-Blue-Green-quot-not-the-same-as-quot/m-p/952587#M25170</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2024-12-05T00:59:56Z</dc:date>
    </item>
    <item>
      <title>Re: Fun With SAS ODS Graphics: How Many States Does It Take to Win a U.S. Presidential Election?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Fun-With-SAS-ODS-Graphics-How-Many-States-Does-It-Take-to-Win-a/m-p/950857#M25137</link>
      <description>&lt;P&gt;Is there a way to get the lines to start at zero?&lt;/P&gt;</description>
      <pubDate>Thu, 14 Nov 2024 21:04:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Fun-With-SAS-ODS-Graphics-How-Many-States-Does-It-Take-to-Win-a/m-p/950857#M25137</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2024-11-14T21:04:48Z</dc:date>
    </item>
    <item>
      <title>Re: Converting Latitude and Longitude for Use With Specific MAPSGFK Maps</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Converting-Latitude-and-Longitude-for-Use-With-Specific-MAPSGFK/m-p/938450#M24892</link>
      <description>&lt;P&gt;As Jeff says, Alaska &amp;amp; Hawaii have been moved/projected/scaled differently from the rest of the US, in this particular map (mapsgfk.us). Therefore, there is no one/simple command that will move/project/scale arbitrary lat/long coordinates and have them line up with the map.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But ... mapsgfk.uscity has applied the same move/project/scale to all the mapsgfk.uscity locations, so they line up with mapsgfk.us ... and therefore if you find the closest city to each of your lat/long locations, you could look up the x/y from mapsgfk.uscity, and plot those locations on the map. Here's a small example showing all the mapsgfk.uscity locations overlaid on mapsgfk.us:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;title "mapsgfk.us with mapsgfk.uscity locations overlaid";
proc sgmap mapdata=mapsgfk.us noautolegend plotdata=mapsgfk.uscity;
choromap / mapid=statecode;
scatter x=x y=y / markerattrs=(size=1px color=red symbol=circlefilled) transparency=0;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="uscity.png" style="width: 640px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/99078iEB63D813B8BD2781/image-size/large?v=v2&amp;amp;px=999" role="button" title="uscity.png" alt="uscity.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 07 Aug 2024 00:02:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Converting-Latitude-and-Longitude-for-Use-With-Specific-MAPSGFK/m-p/938450#M24892</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2024-08-07T00:02:50Z</dc:date>
    </item>
    <item>
      <title>Re: Discrete Axis - Ticks at both ends when using inbetween</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Discrete-Axis-Ticks-at-both-ends-when-using-inbetween/m-p/935581#M24772</link>
      <description>&lt;P&gt;Why would you want any ticks on that axis at all?&lt;/P&gt;
&lt;P&gt;What purpose do they serve?&lt;/P&gt;</description>
      <pubDate>Fri, 12 Jul 2024 13:11:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Discrete-Axis-Ticks-at-both-ends-when-using-inbetween/m-p/935581#M24772</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2024-07-12T13:11:56Z</dc:date>
    </item>
    <item>
      <title>Re: Fun With SAS ODS Graphics: Stars and Popsicle Stick Stripes Forever</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Fun-With-SAS-ODS-Graphics-Stars-and-Popsicle-Stick-Stripes/m-p/934888#M24753</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/4628"&gt;@tc&lt;/a&gt;&amp;nbsp;&amp;nbsp;never disappoints!&lt;/P&gt;</description>
      <pubDate>Sat, 06 Jul 2024 19:21:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Fun-With-SAS-ODS-Graphics-Stars-and-Popsicle-Stick-Stripes/m-p/934888#M24753</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2024-07-06T19:21:30Z</dc:date>
    </item>
    <item>
      <title>Re: Difficulties getting Proc Gmap to produce annotated graph with Proc Geocode and county level map</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Difficulties-getting-Proc-Gmap-to-produce-annotated-graph-with/m-p/933332#M367070</link>
      <description>&lt;P&gt;Here's how to do it without combining/projecting/separating the map &amp;amp; data, by using the somewhat new feature of saving the projection parameters for the map and then applying them to the annotate dataset:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data zips;
input c zip;
cards;
1 65203
2 65211
3 65201
;

proc geocode data=zips out=geocodedzips (rename=(x=long y=lat));
run;

data mocounties; set mapsgfk.us_counties (where=(statecode='MO'));
run;

proc gproject data=mocounties out=mocounties 
latlong eastlong degrees parmout=projparm;
id county;
run;

proc gproject data=geocodedzips out=geocodedzips
latlong eastlong degrees parmin=projparm parmentry=mocounties;
id;
run;

data anno_locations; set geocodedzips;
if c=1 then color="red";
if c=2 then color="bib";
if c=3 then color="viyg";
if c=4 then color="bippk";
xsys='2'; ysys='2'; hsys='3'; when='a';
function='pie'; rotate=360; size=.5;
style='psolid'; 
output;
length html $300;
html='title='||quote(trim(left(c))||'0d'x||trim(left(put(zip,z5.))));
style='pempty'; color='deb'; 
output;
run;

pattern1 v=e;

proc gmap map=mocounties data=mocounties anno=anno_locations;
id county;
choro segment / coutline=black levels=1 nolegend
coutline=gray99;

&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="mo_map.png" style="width: 800px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/97753iD80B44764B4876DB/image-size/large?v=v2&amp;amp;px=999" role="button" title="mo_map.png" alt="mo_map.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 21 Jun 2024 14:44:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Difficulties-getting-Proc-Gmap-to-produce-annotated-graph-with/m-p/933332#M367070</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2024-06-21T14:44:38Z</dc:date>
    </item>
    <item>
      <title>Re: Editing slice labels in a donut chart so that they don't overlap</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Editing-slice-labels-in-a-donut-chart-so-that-they-don-t-overlap/m-p/933321#M24728</link>
      <description>&lt;P&gt;Could you provide the code you used to produce your gchart pie chart?&lt;/P&gt;</description>
      <pubDate>Fri, 21 Jun 2024 14:09:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Editing-slice-labels-in-a-donut-chart-so-that-they-don-t-overlap/m-p/933321#M24728</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2024-06-21T14:09:56Z</dc:date>
    </item>
    <item>
      <title>Re: PROC GMAP</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/PROC-GMAP/m-p/933293#M24727</link>
      <description>&lt;P&gt;Hypothetically, you could draw bars on a 2d map using annotate (where the bar starts at the center of each state, and the height of the bars is scaled based on the data). I'm not sure it would be a great way to present data, and not sure it would be worth the work.&lt;/P&gt;</description>
      <pubDate>Fri, 21 Jun 2024 13:47:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/PROC-GMAP/m-p/933293#M24727</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2024-06-21T13:47:43Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Plotter Update "Sankey diagram"</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/SAS-Plotter-Update-quot-Sankey-diagram-quot/m-p/932361#M24706</link>
      <description>&lt;P&gt;Examples are a *lot* more useful, when they include the sample data!&lt;/P&gt;</description>
      <pubDate>Fri, 14 Jun 2024 02:50:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/SAS-Plotter-Update-quot-Sankey-diagram-quot/m-p/932361#M24706</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2024-06-14T02:50:44Z</dc:date>
    </item>
    <item>
      <title>Re: Fun With SAS ODS Graphics: Mr. Sun, Mr. Moon (Best Cities for Eclipse Viewing)</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Fun-With-SAS-ODS-Graphics-Mr-Sun-Mr-Moon-Best-Cities-for-Eclipse/m-p/923897#M24538</link>
      <description>&lt;P&gt;The maps in the blog post show &lt;STRONG&gt;numeric (lat/long) axes&lt;/STRONG&gt; - I've never seen Proc SGMAP do that. Are you 100% certain they were created with SGMAP?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="harenburg-solar-eclipse-april-figure-3.png" style="width: 450px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/95444i6DEC86DE12855ABE/image-size/large?v=v2&amp;amp;px=999" role="button" title="harenburg-solar-eclipse-april-figure-3.png" alt="harenburg-solar-eclipse-april-figure-3.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Apr 2024 01:56:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Fun-With-SAS-ODS-Graphics-Mr-Sun-Mr-Moon-Best-Cities-for-Eclipse/m-p/923897#M24538</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2024-04-11T01:56:26Z</dc:date>
    </item>
    <item>
      <title>Re: Fun With SAS ODS Graphics: Mr. Sun, Mr. Moon (Best Cities for Eclipse Viewing)</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Fun-With-SAS-ODS-Graphics-Mr-Sun-Mr-Moon-Best-Cities-for-Eclipse/m-p/923688#M24532</link>
      <description>&lt;P&gt;Yep - interesting blog post. ... But it doesn't appear they used SAS to create any of the maps in the blog post(?)&lt;/P&gt;</description>
      <pubDate>Wed, 10 Apr 2024 01:43:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Fun-With-SAS-ODS-Graphics-Mr-Sun-Mr-Moon-Best-Cities-for-Eclipse/m-p/923688#M24532</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2024-04-10T01:43:15Z</dc:date>
    </item>
    <item>
      <title>Re: Need to map Lat and Long to street level</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Need-to-map-Lat-and-Long-to-street-level/m-p/923504#M24531</link>
      <description>&lt;P&gt;Someone mentioned SAS/GIS - that would probably be the best SAS solution for this type of thing ... but it was never finished, and the current version of the software has been 'frozen' (no new decelopment) for many years, and it would be difficult to find expertise/advice/examples to help you with that.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You could plot lat/long crime data on streetmaps using SAS/Graph Proc Gmap, but it's a bit cumbersome (you have to download all the map tiles, and stitch them together, and then get a bit tricky to annotate your data onto the map tile images).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SAS Proc SGmap makes overlaying lat/long data onto streetmaps very simple - that's what I would recommend. I put an example in a blog that might get you started (sample code at bottom of the blog):&amp;nbsp;&lt;A href="https://blogs.sas.com/content/graphicallyspeaking/2021/08/17/cary-nc-data-fire-incidents/" target="_blank"&gt;https://blogs.sas.com/content/graphicallyspeaking/2021/08/17/cary-nc-data-fire-incidents/&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="cary_fire.png" style="width: 900px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/95335i44414A2CE4CFF578/image-size/large?v=v2&amp;amp;px=999" role="button" title="cary_fire.png" alt="cary_fire.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 08 Apr 2024 20:50:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Need-to-map-Lat-and-Long-to-street-level/m-p/923504#M24531</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2024-04-08T20:50:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to plot a set of unique coordinates on a map</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-plot-a-set-of-unique-coordinates-on-a-map/m-p/919140#M24420</link>
      <description>&lt;P&gt;You could use the value of the 'present' variable to control the color of the dots, such as ...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;data coordinates; set coordinates;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;length color $12;&lt;BR /&gt;&lt;SPAN&gt;xsys='2'; ysys='2'; hsys='3'; when='a';&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;function='pie'; rotate=360; size=1.0; &lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;if present=0 then color='red';&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;else if present=1 then color='green';&lt;BR /&gt;&lt;SPAN&gt;run;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Mar 2024 15:46:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-plot-a-set-of-unique-coordinates-on-a-map/m-p/919140#M24420</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2024-03-06T15:46:43Z</dc:date>
    </item>
    <item>
      <title>Re: What release of SAS is used with SAS On Demand for Academics?</title>
      <link>https://communities.sas.com/t5/SAS-Software-for-Learning/What-release-of-SAS-is-used-with-SAS-On-Demand-for-Academics/m-p/916634#M1729</link>
      <description>&lt;P&gt;Not sure exactly when it was upgraded, but looks like it's at 9.4m7 now (Feb 2024) ...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV class="sasSource"&gt;%put &amp;amp;=SYSVLONG;&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;SYSVLONG=9.04.01M7P080620&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;So a bunch of the last features added to sgmap should work now:&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;&lt;A href="https://blogs.sas.com/content/graphicallyspeaking/2020/09/25/new-sgmap-features-in-sas-9-4m7/" target="_blank"&gt;https://blogs.sas.com/content/graphicallyspeaking/2020/09/25/new-sgmap-features-in-sas-9-4m7/&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;&amp;nbsp;&lt;/DIV&gt;</description>
      <pubDate>Sat, 17 Feb 2024 17:09:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Software-for-Learning/What-release-of-SAS-is-used-with-SAS-On-Demand-for-Academics/m-p/916634#M1729</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2024-02-17T17:09:46Z</dc:date>
    </item>
    <item>
      <title>Re: How to plot a set of unique coordinates on a map</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-plot-a-set-of-unique-coordinates-on-a-map/m-p/916627#M24378</link>
      <description>&lt;P&gt;I have a couple of similar examples on this page, that might interest you. (they're on the last row of thumbnails - bottom/left):&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://robslink.com/SAS/democd_mpg/aaaindex.htm" target="_blank"&gt;https://robslink.com/SAS/democd_mpg/aaaindex.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 17 Feb 2024 15:31:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-plot-a-set-of-unique-coordinates-on-a-map/m-p/916627#M24378</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2024-02-17T15:31:18Z</dc:date>
    </item>
  </channel>
</rss>

