<?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: Proc GMap County and State Boundries in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/Proc-GMap-County-and-State-Boundries/m-p/295552#M10432</link>
    <description>&lt;P&gt;Also, I'm on SAS 9.4&lt;/P&gt;</description>
    <pubDate>Wed, 31 Aug 2016 15:53:18 GMT</pubDate>
    <dc:creator>roldan87</dc:creator>
    <dc:date>2016-08-31T15:53:18Z</dc:date>
    <item>
      <title>Proc GMap County and State Boundries</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Proc-GMap-County-and-State-Boundries/m-p/295256#M10401</link>
      <description>&lt;P&gt;Hello, I am trying to create a county map for multiple states on one graphic. &amp;nbsp;I have different style lines for the states and counties to give more emphasis to the states. &amp;nbsp;My problem is that some of the county lines are being formatted like states. &amp;nbsp;You can see what I'm talking about in the attached picture.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/*******************************************************************/
/* This sample program produces a map of Arizona, Colorado,        */
/* New Mexico, and Utah with thick state outline.                  */
/* You can change the width of the line by changing the value of   */
/* the SIZE variable in the ANNO annotate data set.                */
/*                                                                 */
/* Since we are using an unprojected county map, we need to use    */
/* the GPROJECT procedure to project the map data.  Subset the     */
/* specified states during the projection.                         */
/* If you include Alaska, you might want to use the GNOMON         */
/* projection with the POLELONG option to better center the map.   */
/*******************************************************************/
 
 /* Set the graphics environment */
goptions reset=all cback=white border htitle=12pt htext=10pt;  

 /* Create a projected map data set named MAP */
proc sort data=newmap;by state;quit;

proc gproject data=newmap out=map;
  id state county;

  /* Use the state FIPS codes to subset the desired states */
/*Pacific*/
/*  where state in (6,41,32); */
/*Pacific - HI Only*/
/*  where state in (15); */

/*West*/
/*  where state in (53,16,49,4,30,56,8,35,38,46,31,20,40,48,27);*/
/*West - AK Only*/
/*where state in (2);*/

  /*Northeast*/
/*  where state in (19,55,17,26,18,39,42,36,50,23,33,25,44,9,34);*/

/*Southeast*/
  where state in (29,5,22,21,47,28,1,54,10,24,51,37,45,13,12);

run;
quit;

 /* Since we want to thicken the outline of the state boundaries,   */
 /* we need to get the coordinates for the state outlines.  Using   */
 /* the GREMOVE procedure, we can remove the county boundaries to   */
 /* create a data set of only the state boundaries.                 */

 /* Create a data set named STATES that contains the state boundaries */
proc gremove data=map out=states;

  /* STATE is the new identification variable */
  by state;

  /* STATE and COUNTY were the original identification variables */
  id state county;
run;
quit;

 /* Increment the SEGMENT variable value for all lake coordinates */
 /* indicated by missing X and Y values.                          */
data states;
  set states;
  by state;
  retain flag num 0;

  /* Reset the flag value for each state */
  if first.state then do;
     flag=0;
     num=0;
  end;

  /* Set the flag value when x and y are missing */
  if x=. and y=. then do;
    flag=1;
    num + 1;
    delete;
  end;

  /* Increment the segment value */
  if flag=1 then segment + num;
  drop flag num;
run;

/* Use the Annotate Facility to draw the outlines for the states   */
/*                                                                 */
/* The data coordinate system of '2' is used for XSYS and YSYS to  */
/* place the annotation on the map at the correct location. The    */
/* WHEN variable is set to 'A' to place the annotation after the   */
/* procedure output has been drawn.  The color for the outlines is */
/* set to black.  The size of the outline is set to 5.  The color  */
/* and size of the outlines can be changed by changing the values  */
/* in the COLOR and SIZE variables, respectively.                  */

 /* Create an annotate data set named ANNO for the state outlines */
data anno;
  length function color $8;
  retain xsys ysys '2' when 'a' color 'black' size 2;
  drop xsave ysave;

  set states;
  by state segment;

  /* Move to the first coordinate */
  if first.segment then function='poly';
   
  /* Draw to each successive coordinate */
  else function='polycont';
  output;
run;

 /* Specify distribution format */
proc format;
   value dist low--.10='large decrease' -.10--.03='moderate decrease' -.03-.03='no change' .03-.10='moderate increase' .1-high='large increase';
run;

/*http://www.devenezia.com/docs/SAS/sas-colors.html*/

/*title 'California Distribution';*/
/*title2 h=10pt 'By County';*/

pattern1 value=solid color=H07D74C3;
pattern2 value=solid color=H078B0FF;
pattern3 value=solid color=H000FF00;
pattern4 value=solid color=H0DDA1BA;
pattern5 value=solid color=H0DD476D;

 /* Generate a county map with thick state boundaries */
proc gmap data=combinedproducts2 map=map;
  id state county;
  choro count / anno=anno coutline=H0784F00 discrete;
     format count dist.;
   label count='YTD Referral Performance';
run;
quit;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;BR /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/12904iD95E334CCF082708/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="Picture1.png" title="Picture1.png" /&gt;</description>
      <pubDate>Tue, 30 Aug 2016 17:07:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Proc-GMap-County-and-State-Boundries/m-p/295256#M10401</guid>
      <dc:creator>roldan87</dc:creator>
      <dc:date>2016-08-30T17:07:37Z</dc:date>
    </item>
    <item>
      <title>Re: Proc GMap County and State Boundries</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Proc-GMap-County-and-State-Boundries/m-p/295518#M10426</link>
      <description>&lt;P&gt;What version of SAS are you using? &amp;nbsp;And what map are you using?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I used MAPS.COUNTIES and MAPSGFK.US_COUNTIES and both worked fine, &amp;nbsp;I did not reduce them.&lt;/P&gt;
&lt;P&gt;The attached image is using MAPS.COUNTIES and on GMAP, i used DATA=MAP (since I didn't have your COMBINEDPRODUCTS2 data set) and CHORO STATE. &amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It looks like the map is not correct somehow.&lt;/P&gt;&lt;BR /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/12909i2C83905F5D0B1580/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="gmap20.png" title="gmap20.png" /&gt;</description>
      <pubDate>Wed, 31 Aug 2016 14:30:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Proc-GMap-County-and-State-Boundries/m-p/295518#M10426</guid>
      <dc:creator>Darrell_sas</dc:creator>
      <dc:date>2016-08-31T14:30:45Z</dc:date>
    </item>
    <item>
      <title>Re: Proc GMap County and State Boundries</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Proc-GMap-County-and-State-Boundries/m-p/295541#M10431</link>
      <description>&lt;P&gt;I am using SAS Enterprise Guide 5.1 and looks like I am using both maps.counties and maps.states.&amp;nbsp; My goal is to be able to color inidividual counties while also having a thicker border for each state. I included the previous part of the code below.&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt; /* Create a data set that contains the map boundaries */
 /* for only the counties in the response data set     */
 /* also create a data set for only the states which   */
 /* are contained in the response data                 */
data counties(drop=count test) selstate(keep=state);
   retain test 0 ;
   merge combinedproducts2(in=inprod) maps.counties(in=inmap);
   by state county ;
   if inprod and inmap;

   /* Determine which states are included in the response data */
   if state ^= test then do;
      output selstate;
      test=state;
   end;
   output counties;
 run;

 /* Get the unprojected coordinates for the states */
data states;
   merge maps.states selstate(in=inprod);
   by state;
   if inprod;
run;

 /* Concatenate states with counties map data set */
 /* for projection                                */
data newmap;
   set states counties;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 31 Aug 2016 15:31:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Proc-GMap-County-and-State-Boundries/m-p/295541#M10431</guid>
      <dc:creator>roldan87</dc:creator>
      <dc:date>2016-08-31T15:31:59Z</dc:date>
    </item>
    <item>
      <title>Re: Proc GMap County and State Boundries</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Proc-GMap-County-and-State-Boundries/m-p/295552#M10432</link>
      <description>&lt;P&gt;Also, I'm on SAS 9.4&lt;/P&gt;</description>
      <pubDate>Wed, 31 Aug 2016 15:53:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Proc-GMap-County-and-State-Boundries/m-p/295552#M10432</guid>
      <dc:creator>roldan87</dc:creator>
      <dc:date>2016-08-31T15:53:18Z</dc:date>
    </item>
    <item>
      <title>Re: Proc GMap County and State Boundries</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Proc-GMap-County-and-State-Boundries/m-p/295564#M10434</link>
      <description>&lt;P&gt;I am not sure what you are doing, but to create the annotatate dark state lines, all you need is maps.counties.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;One possibility is that you are doing something to change the ordering of state and county borders. &amp;nbsp;Then when your annotate code traces the state lines, it is tracing some county lines instead of state lines. &amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Another possibility is that you are removing counties and leaving holes in the state. &amp;nbsp;These "county" areas that are outlined in black are bigger than a county in my map. &amp;nbsp;For example, in Texas there is a large place up near Oklahoma. &amp;nbsp;But on my map there are many&amp;nbsp;smaller counties in the same area. &amp;nbsp;If there is a hole, like a lake, Annotate surrounds it by dark lines. &amp;nbsp;Is it possible that you are removing counties and leaving holes that then get surrounded by dark lines? &amp;nbsp;I notice that these holes/counties are white.&lt;/P&gt;</description>
      <pubDate>Wed, 31 Aug 2016 16:43:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Proc-GMap-County-and-State-Boundries/m-p/295564#M10434</guid>
      <dc:creator>Darrell_sas</dc:creator>
      <dc:date>2016-08-31T16:43:23Z</dc:date>
    </item>
    <item>
      <title>Re: Proc GMap County and State Boundries</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Proc-GMap-County-and-State-Boundries/m-p/295572#M10437</link>
      <description>&lt;P&gt;Essentially, I am just trying to have state lines be a darker/thicker line than the county lines while all being on the same multistate map.&amp;nbsp; Is there an easier way to do this?&lt;/P&gt;</description>
      <pubDate>Wed, 31 Aug 2016 17:00:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Proc-GMap-County-and-State-Boundries/m-p/295572#M10437</guid>
      <dc:creator>roldan87</dc:creator>
      <dc:date>2016-08-31T17:00:53Z</dc:date>
    </item>
    <item>
      <title>Re: Proc GMap County and State Boundries</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Proc-GMap-County-and-State-Boundries/m-p/295582#M10440</link>
      <description>&lt;P&gt;Unfortunately, Proc Gmap doesn't have a built-in option for that.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have created &amp;amp; explained some code to do what you're wanting, towards the end of the following informal doc (in the "Annotating Borders" section):&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://robslink.com/SAS/book2/Chapter_07_Annotating_on_Maps.pdf" target="_self"&gt;http://robslink.com/SAS/book2/Chapter_07_Annotating_on_Maps.pdf&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Look for the following:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/4788iEE64604852C78AF1/image-size/original?v=v2&amp;amp;px=-1" border="0" alt="state_borders.png" title="state_borders.png" /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 31 Aug 2016 17:23:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Proc-GMap-County-and-State-Boundries/m-p/295582#M10440</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2016-08-31T17:23:21Z</dc:date>
    </item>
    <item>
      <title>Re: Proc GMap County and State Boundries</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Proc-GMap-County-and-State-Boundries/m-p/295590#M10444</link>
      <description>&lt;P&gt;You have the necessary code.&amp;nbsp; All you need is to use MAPS.COUNTIES instead of MAPS.COUNTIES, MAPS.STATES and your other data in the map before you create your annotate data.&lt;/P&gt;</description>
      <pubDate>Wed, 31 Aug 2016 17:42:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Proc-GMap-County-and-State-Boundries/m-p/295590#M10444</guid>
      <dc:creator>Darrell_sas</dc:creator>
      <dc:date>2016-08-31T17:42:45Z</dc:date>
    </item>
    <item>
      <title>Re: Proc GMap County and State Boundries</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Proc-GMap-County-and-State-Boundries/m-p/295609#M10455</link>
      <description>&lt;P&gt;I'm actually having trouble replicating the same map.&amp;nbsp; I ran the below program from the suggested text but the state lines are rendering strangely.&amp;nbsp; Can you please advise on how to fix?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data my_map; set mapsgfk.us_counties (where=(statecode in ('NC' 'SC') and density&amp;lt;=2) drop=resolution);
run;
proc gproject data=my_map out=my_map
latlong eastlong degrees;
id state county;
run;
title1 ls=1.5 "North and South Carolina";
pattern1 v=s c=white;

proc gremove data=my_map out=anno_outline;
by state notsorted;
id county;
run;

data anno_outline; set anno_outline;
by state segment notsorted;
length function $8 color $8;
color='gray33'; style='mempty'; when='a'; xsys='2'; ysys='2';
if first.segment then function='poly';
else function='polycont';
run;

proc gmap map=my_map data=my_map anno=anno_outline;
id state county;
choro segment / levels=1 nolegend coutline=graydd;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/12914iB1E0208D0FE0A484/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="Carloina Map Error.png" title="Carloina Map Error.png" /&gt;</description>
      <pubDate>Wed, 31 Aug 2016 18:23:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Proc-GMap-County-and-State-Boundries/m-p/295609#M10455</guid>
      <dc:creator>roldan87</dc:creator>
      <dc:date>2016-08-31T18:23:14Z</dc:date>
    </item>
    <item>
      <title>Re: Proc GMap County and State Boundries</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Proc-GMap-County-and-State-Boundries/m-p/295614#M10457</link>
      <description>&lt;P&gt;Could you try running it outside of Enterprise Guide (EG), and see if it works?&lt;/P&gt;
&lt;P&gt;Are you using device=activex in EG (which I believe is the default) - perhaps annotation has a bug there.&lt;/P&gt;
&lt;P&gt;Is it possible that you have re-sorted or otherwise modified your mapsgfk.us_county dataset?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I re-ran your code just now, in SAS 9.4m3, in traditional DMS SAS (rather than EG),&amp;nbsp;&lt;/P&gt;
&lt;P&gt;and got the following output:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/4792i1AA1C0D44C229538/image-size/original?v=v2&amp;amp;px=-1" border="0" alt="map_outline.png" title="map_outline.png" /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 31 Aug 2016 18:32:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Proc-GMap-County-and-State-Boundries/m-p/295614#M10457</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2016-08-31T18:32:37Z</dc:date>
    </item>
    <item>
      <title>Re: Proc GMap County and State Boundries</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Proc-GMap-County-and-State-Boundries/m-p/295630#M10462</link>
      <description>&lt;P&gt;I unfortunately only have EG.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I added the below line to the program and am still having the extra lines being drawn on the chart.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How should the mapsgfk.us_county dataset be sorted?&amp;nbsp; I doubt that it has been updated, but can try sorting it as necessary.&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;goptions reset=global device=activex ypixels=600 xpixels=800; &lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 31 Aug 2016 18:56:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Proc-GMap-County-and-State-Boundries/m-p/295630#M10462</guid>
      <dc:creator>roldan87</dc:creator>
      <dc:date>2016-08-31T18:56:28Z</dc:date>
    </item>
    <item>
      <title>Re: Proc GMap County and State Boundries</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Proc-GMap-County-and-State-Boundries/m-p/295784#M10472</link>
      <description>&lt;P&gt;You want to *not* use goptions device=activex, rather than use it (I would recommend goptions device=png). But I don't think you can just specify a goptions line to do it in EG - I think you have to change it somewhere in the menus (I'm not an EG user so I'm not sure - maybe Chris Hemedinger could help out on that.)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Per the sort order, you can't just sort the dataset by a variable in the dataset. It has to be in the order that it was originally created. Proc Gmap connects the x/y points&amp;nbsp;in the order it encounters them, and then creaks the line between each state/county combination (and sometimes segment).&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There are a lot of things that have to happen "just right" for a map to look right.&lt;/P&gt;</description>
      <pubDate>Thu, 01 Sep 2016 11:47:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Proc-GMap-County-and-State-Boundries/m-p/295784#M10472</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2016-09-01T11:47:00Z</dc:date>
    </item>
    <item>
      <title>Re: Proc GMap County and State Boundries</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Proc-GMap-County-and-State-Boundries/m-p/295789#M10474</link>
      <description>&lt;P&gt;OK - I've done some more experimenting, and the stray lines definitely appear to be a device=activex problem...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To aviod the problem, you'll want to figure out how to change your EG session to use png output rather than activex.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In my traditional SAS session I set "goptions device=actximg;" and got the following map (with stray lines):&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/4800i4E01E8E6D2B05058/image-size/original?v=v2&amp;amp;px=-1" border="0" alt="map_actximg.png" title="map_actximg.png" /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;BR /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/12918i8F60109AFAD99DF8/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="map_actximg.png" title="map_actximg.png" /&gt;</description>
      <pubDate>Thu, 01 Sep 2016 12:00:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Proc-GMap-County-and-State-Boundries/m-p/295789#M10474</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2016-09-01T12:00:47Z</dc:date>
    </item>
    <item>
      <title>Re: Proc GMap County and State Boundries</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Proc-GMap-County-and-State-Boundries/m-p/295884#M10479</link>
      <description>&lt;P&gt;Changing to PNG solved the problem.&amp;nbsp; Thank you for your help!&lt;/P&gt;</description>
      <pubDate>Thu, 01 Sep 2016 15:29:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Proc-GMap-County-and-State-Boundries/m-p/295884#M10479</guid>
      <dc:creator>roldan87</dc:creator>
      <dc:date>2016-09-01T15:29:20Z</dc:date>
    </item>
  </channel>
</rss>

