<?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: How to Create map of several U.S. with 3 circles and also use proc ginside to show points in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/How-to-Create-map-of-several-U-S-with-3-circles-and-also-use/m-p/783308#M22362</link>
    <description>&lt;P&gt;This example isn't exactly what you're wanting to do, but it should have several bits of code you can re-purpose ...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://robslink.com/SAS/democd29/customer_info.htm" target="_blank"&gt;http://robslink.com/SAS/democd29/customer_info.htm&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="customers_within_circle.png" style="width: 999px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/66296i5F30C449F2D0B04C/image-size/large?v=v2&amp;amp;px=999" role="button" title="customers_within_circle.png" alt="customers_within_circle.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 01 Dec 2021 01:50:30 GMT</pubDate>
    <dc:creator>GraphGuy</dc:creator>
    <dc:date>2021-12-01T01:50:30Z</dc:date>
    <item>
      <title>How to Create map of several U.S. with 3 circles and also use proc ginside to show points</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-Create-map-of-several-U-S-with-3-circles-and-also-use/m-p/783295#M22360</link>
      <description>&lt;P&gt;I need to create a map with 3 circles with different distances from the center point, but also to add markers for cities within each of the 3 circles. The code for the 3 circles covering a few states is below - this is thanks to an example I found online - robslink.com. The problem I have is incorporating the dataset with cities and using proc ginside to determine if the points are within a circle. Sincere Thank you to anyone who can help!&lt;/P&gt;&lt;P&gt;goptions reset=all cback=white border htitle=12pt htext=10pt xpixels=1000 ypixels=1000*/;&lt;BR /&gt;data dodge1;&lt;BR /&gt;input srvarea long lat city $25.;&lt;BR /&gt;x=atan(1)/45 * long;&lt;BR /&gt;y=atan(1)/45 * lat;&lt;BR /&gt;datalines;&lt;BR /&gt;100 100.0171 37.7528 Dodge City&lt;BR /&gt;;&lt;BR /&gt;run;&lt;BR /&gt;data dodge2;&lt;BR /&gt;input srvarea long lat city $25.;&lt;BR /&gt;x=atan(1)/45 * long;&lt;BR /&gt;y=atan(1)/45 * lat;&lt;BR /&gt;&lt;BR /&gt;datalines;&lt;BR /&gt;200 100.0171 37.7528 Dodge City&lt;BR /&gt;;&lt;BR /&gt;run;&lt;BR /&gt;data dodge3;&lt;BR /&gt;input srvarea long lat city $25.;&lt;BR /&gt;x=atan(1)/45 * long;&lt;BR /&gt;y=atan(1)/45 * lat;&lt;BR /&gt;&lt;BR /&gt;datalines;&lt;BR /&gt;300 100.0171 37.7528 Dodge City&lt;BR /&gt;;&lt;BR /&gt;run;&lt;BR /&gt;/********************************************/&lt;BR /&gt;data maplabel;&lt;BR /&gt;length function $ 8;&lt;BR /&gt;retain flag 0 xsys ysys '2' hsys '3' when 'a' style "'Albany AMT'";&lt;BR /&gt;set maps.uscenter(drop=long lat);&lt;/P&gt;&lt;P&gt;where (fipstate(state) in ('CO' 'NE' 'MO' 'NM' 'TX' 'KS' 'IA' 'OK'));&lt;BR /&gt;function='label'; text=fipstate(state); size=2.5; position='10';&lt;BR /&gt;if ocean='Y' then&lt;BR /&gt;do;&lt;BR /&gt;position='6'; output;&lt;BR /&gt;function='move';&lt;BR /&gt;flag=1;&lt;BR /&gt;end;&lt;BR /&gt;&lt;BR /&gt;else if flag=1 then&lt;BR /&gt;do;&lt;BR /&gt;function='draw'; size=.5;&lt;BR /&gt;flag=0;&lt;BR /&gt;end;&lt;BR /&gt;output;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;/********************CIRCLE 1 100 MILES ***************/&lt;BR /&gt;data anno1;&lt;BR /&gt;set dodge1;&lt;BR /&gt;retain xsys ysys '2' flag 1 when 'a';&lt;BR /&gt;length text $25 color function $ 8 style $ 25;&lt;BR /&gt;drop xold yold;&lt;/P&gt;&lt;P&gt;xold=x;&lt;BR /&gt;yold=y;&lt;BR /&gt;&lt;BR /&gt;d2r=3.1415926/180;&lt;BR /&gt;r=3958.739565;&lt;BR /&gt;&lt;BR /&gt;xcen=long;&lt;BR /&gt;ycen=lat;&lt;BR /&gt;&lt;BR /&gt;do degree=0 to 360 by 5;&lt;/P&gt;&lt;P&gt;if degree=0 then do;&lt;/P&gt;&lt;P&gt;function='poly';&lt;BR /&gt;line=1;&lt;BR /&gt;pattern v=e;&lt;BR /&gt;color='aF8A10266';&lt;BR /&gt;end;&lt;/P&gt;&lt;P&gt;else do;&lt;BR /&gt;function='polycont';&lt;BR /&gt;&lt;BR /&gt;color='black';&lt;BR /&gt;end;&lt;BR /&gt;y=arsin(cos(degree*d2r)*sin(srvarea/R)*cos(ycen*d2r)+ cos(srvarea/R)*sin(ycen*d2r))/d2r;&lt;BR /&gt;x=xcen+arsin(sin(degree*d2r)*sin(srvarea/R)/cos(y*d2r))/d2r;&lt;/P&gt;&lt;P&gt;x=atan(1)/45*x;&lt;BR /&gt;y=atan(1)/45*y;&lt;BR /&gt;output;&lt;BR /&gt;end;&lt;BR /&gt;x=xold;&lt;BR /&gt;y=yold;&lt;/P&gt;&lt;P&gt;function='label';&lt;BR /&gt;style='special';&lt;BR /&gt;text='J';&lt;BR /&gt;position='5';&lt;BR /&gt;color='black';&lt;BR /&gt;output;&lt;/P&gt;&lt;P&gt;style="'Albany AMT'";&lt;BR /&gt;text=city;&lt;BR /&gt;position='2';&lt;BR /&gt;color='black';&lt;BR /&gt;output;&lt;BR /&gt;text=trim(left(srvarea))||' Miles';&lt;BR /&gt;size=1;&lt;BR /&gt;position='8';&lt;BR /&gt;output;&lt;/P&gt;&lt;P&gt;run;&lt;BR /&gt;//********************CIRCLE 2 - 200 MILES **************//&lt;BR /&gt;data anno2;&lt;BR /&gt;set dodge2;&lt;BR /&gt;retain xsys ysys '2' flag 1 when 'a';&lt;BR /&gt;length text $25 color function $ 8 style $ 25;&lt;BR /&gt;drop xold yold;&lt;/P&gt;&lt;P&gt;xold=x;&lt;BR /&gt;yold=y;&lt;BR /&gt;d2r=3.1415926/180;&lt;BR /&gt;r=3958.739565;&lt;BR /&gt;xcen=long;&lt;BR /&gt;ycen=lat;&lt;BR /&gt;do degree=0 to 360 by 5;&lt;BR /&gt;if degree=0 then do;&lt;BR /&gt;function='poly';&lt;BR /&gt;line=1;&lt;BR /&gt;pattern v=e;&lt;BR /&gt;color='aF8A10266';&lt;BR /&gt;end;&lt;BR /&gt;else do;&lt;BR /&gt;function='polycont';&lt;BR /&gt;color='blue';&lt;BR /&gt;end;&lt;BR /&gt;y=arsin(cos(degree*d2r)*sin(srvarea/R)*cos(ycen*d2r)+ cos(srvarea/R)*sin(ycen*d2r))/d2r;&lt;BR /&gt;x=xcen+arsin(sin(degree*d2r)*sin(srvarea/R)/cos(y*d2r))/d2r;&lt;BR /&gt;/* Convert degrees to radians */&lt;BR /&gt;x=atan(1)/45*x;&lt;BR /&gt;y=atan(1)/45*y;&lt;BR /&gt;output;&lt;BR /&gt;end;&lt;BR /&gt;x=xold;&lt;BR /&gt;y=yold;&lt;BR /&gt;function='label';&lt;BR /&gt;style='special';&lt;BR /&gt;text='J';&lt;BR /&gt;position='5';&lt;BR /&gt;color='blue';&lt;BR /&gt;output;&lt;BR /&gt;style="'Albany AMT'";&lt;BR /&gt;text=city;&lt;BR /&gt;position='2';&lt;BR /&gt;color='blue';&lt;BR /&gt;output;&lt;BR /&gt;text=trim(left(srvarea))||' Miles';&lt;BR /&gt;size=1;&lt;BR /&gt;position='8';&lt;BR /&gt;output;&lt;BR /&gt;run;&lt;BR /&gt;/***************** CIRCLE 3 - 300 MILES **************************/&lt;BR /&gt;data anno3;&lt;BR /&gt;set dodge3;&lt;BR /&gt;retain xsys ysys '2' flag 1 when 'a';&lt;BR /&gt;length text $25 color function $ 8 style $ 25;&lt;BR /&gt;drop xold yold;&lt;/P&gt;&lt;P&gt;xold=x;&lt;BR /&gt;yold=y;&lt;BR /&gt;d2r=3.1415926/180;&lt;BR /&gt;r=3958.739565;&lt;BR /&gt;xcen=long;&lt;BR /&gt;ycen=lat;&lt;BR /&gt;do degree=0 to 360 by 5;&lt;BR /&gt;if degree=0 then do;&lt;BR /&gt;function='poly';&lt;BR /&gt;line=1;&lt;BR /&gt;/*style='solid'; */&lt;BR /&gt;pattern v=e;&lt;BR /&gt;color='aF8A10266';&lt;BR /&gt;end;&lt;BR /&gt;else do;&lt;BR /&gt;function='polycont';&lt;BR /&gt;color='red';&lt;BR /&gt;end;&lt;BR /&gt;y=arsin(cos(degree*d2r)*sin(srvarea/R)*cos(ycen*d2r)+ cos(srvarea/R)*sin(ycen*d2r))/d2r;&lt;BR /&gt;x=xcen+arsin(sin(degree*d2r)*sin(srvarea/R)/cos(y*d2r))/d2r;&lt;BR /&gt;x=atan(1)/45*x;&lt;BR /&gt;y=atan(1)/45*y;&lt;BR /&gt;output;&lt;BR /&gt;end;&lt;BR /&gt;x=xold;&lt;BR /&gt;y=yold;&lt;BR /&gt;function='label';&lt;BR /&gt;style='special';&lt;BR /&gt;text='J';&lt;BR /&gt;position='5';&lt;BR /&gt;color='red';&lt;BR /&gt;output;&lt;BR /&gt;style="'Albany AMT'";&lt;BR /&gt;text=city;&lt;BR /&gt;position='2';&lt;BR /&gt;color='red';&lt;BR /&gt;output;&lt;BR /&gt;&lt;BR /&gt;text=trim(left(srvarea))||' Miles';&lt;BR /&gt;size=1;&lt;BR /&gt;position='8';&lt;BR /&gt;output;&lt;BR /&gt;run;&lt;BR /&gt;/*** OTHER ANNOTATIONS ******/&lt;BR /&gt;data anno4;&lt;BR /&gt;function='label'; text=fipstate(state); size=2.5; position='10';&lt;BR /&gt;run;&lt;BR /&gt;data anno5;&lt;BR /&gt;set maplabel label1 maplabel;&lt;BR /&gt;run;&lt;BR /&gt;pattern1 r=52 v=msolid c=grayEE;&lt;BR /&gt;title1 '';&lt;BR /&gt;proc gmap data=ks map=ks anno=anno5;&lt;BR /&gt;id state;&lt;BR /&gt;choro state / coutline=black nolegend;&lt;BR /&gt;run;&lt;BR /&gt;quit;&lt;/P&gt;&lt;P&gt;CODE I TRIED FOR PROC GINSIDE TO INCLUDE POINTS INSIDE MAP CIRCLES - HAS PROBLEMS&lt;/P&gt;&lt;P&gt;data circle_map; set anno1;&lt;BR /&gt;inside_id=67801;&lt;BR /&gt;run;&lt;BR /&gt;/* proc ginside is a new v9.2 proc */&lt;BR /&gt;proc ginside data=kspk map=circle_map out=kspk;&lt;BR /&gt;id inside_id;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;/* Now, for dots that are 'inside' the circle, set their color to something special */&lt;BR /&gt;data kspk; set kspk&lt;BR /&gt;if (inside_id ne .) then color="red";&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;/* Get the NC map */&lt;BR /&gt;proc sql;&lt;BR /&gt;create table mymap as&lt;BR /&gt;select state, segment, x, y&lt;BR /&gt;from maps.states&lt;BR /&gt;where&lt;BR /&gt;quit;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;data combined;&lt;BR /&gt;set mymap customers circle;&lt;BR /&gt;run;&lt;BR /&gt;proc gproject data=combined out=combined dupok ;&lt;BR /&gt;id state;&lt;BR /&gt;run;&lt;BR /&gt;data mymap kspk circle;&lt;BR /&gt;set combined;&lt;BR /&gt;if anno_flag=1 then output kspk;&lt;BR /&gt;if anno_flag=2 then output circle;&lt;BR /&gt;else output mymap;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;data anno_pk;&lt;BR /&gt;retain xsys ysys "2" hsys "3" when "a";&lt;BR /&gt;set kspk;&lt;BR /&gt;function="symbol"; style="marker"; text="V"; color="blue"; size=1.75;&lt;BR /&gt;output;&lt;BR /&gt;run;&lt;BR /&gt;/* Combine the annotate data set with the map data set */&lt;BR /&gt;data combo1;&lt;BR /&gt;set anno1 anno_pk maps.states(where=(state in (8 19 20 29 31 35 40 48)));&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Nov 2021 22:16:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-Create-map-of-several-U-S-with-3-circles-and-also-use/m-p/783295#M22360</guid>
      <dc:creator>Juno77</dc:creator>
      <dc:date>2021-11-30T22:16:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to Create map of several U.S. with 3 circles and also use proc ginside to show points</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-Create-map-of-several-U-S-with-3-circles-and-also-use/m-p/783308#M22362</link>
      <description>&lt;P&gt;This example isn't exactly what you're wanting to do, but it should have several bits of code you can re-purpose ...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://robslink.com/SAS/democd29/customer_info.htm" target="_blank"&gt;http://robslink.com/SAS/democd29/customer_info.htm&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="customers_within_circle.png" style="width: 999px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/66296i5F30C449F2D0B04C/image-size/large?v=v2&amp;amp;px=999" role="button" title="customers_within_circle.png" alt="customers_within_circle.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 01 Dec 2021 01:50:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-Create-map-of-several-U-S-with-3-circles-and-also-use/m-p/783308#M22362</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2021-12-01T01:50:30Z</dc:date>
    </item>
    <item>
      <title>Re: How to Create map of several U.S. with 3 circles and also use proc ginside to show points</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-Create-map-of-several-U-S-with-3-circles-and-also-use/m-p/783381#M22364</link>
      <description>&lt;P&gt;Thank you for your response. I'm still not clear as to what the statement "id inside_id" does. I'm using cities, not zipcodes, do I have to use zipcodes to use proc ginside? How do I incorporate the cities annotation into all the other annotations. I tried it already by adding to the final anno ___ for proc gmap and it's not working.&lt;/P&gt;&lt;P&gt;Thanks again&lt;/P&gt;</description>
      <pubDate>Wed, 01 Dec 2021 13:24:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-Create-map-of-several-U-S-with-3-circles-and-also-use/m-p/783381#M22364</guid>
      <dc:creator>Juno77</dc:creator>
      <dc:date>2021-12-01T13:24:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to Create map of several U.S. with 3 circles and also use proc ginside to show points</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-Create-map-of-several-U-S-with-3-circles-and-also-use/m-p/783383#M22365</link>
      <description>&lt;P&gt;Read through the explanation in my book (Example 9, starting on p. 63) and see if that gives a better understanding of how everything works.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://robslink.com/SAS/book/GraphBeyond.pdf" target="_blank"&gt;http://robslink.com/SAS/book/GraphBeyond.pdf&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would recommend getting one thing working separately at a time (the ginside, the annotate, etc), and make sure you know how each piece works, before trying to get it all working together.&lt;/P&gt;</description>
      <pubDate>Wed, 01 Dec 2021 13:36:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-Create-map-of-several-U-S-with-3-circles-and-also-use/m-p/783383#M22365</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2021-12-01T13:36:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to Create map of several U.S. with 3 circles and also use proc ginside to show points</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-Create-map-of-several-U-S-with-3-circles-and-also-use/m-p/783504#M22366</link>
      <description>Thanks. The proc ginside examples in your book were very helpful, the solution turned out to be simple. Now the problem is the map is not projecting correctly when all of the annotations are included.</description>
      <pubDate>Thu, 02 Dec 2021 01:33:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-Create-map-of-several-U-S-with-3-circles-and-also-use/m-p/783504#M22366</guid>
      <dc:creator>Juno77</dc:creator>
      <dc:date>2021-12-02T01:33:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to Create map of several U.S. with 3 circles and also use proc ginside to show points</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-Create-map-of-several-U-S-with-3-circles-and-also-use/m-p/783508#M22368</link>
      <description>Which map dataset is the best to use in this case? I've been using maps.states, you used mapsgfk.us_states. What's the difference?</description>
      <pubDate>Thu, 02 Dec 2021 01:55:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-Create-map-of-several-U-S-with-3-circles-and-also-use/m-p/783508#M22368</guid>
      <dc:creator>Juno77</dc:creator>
      <dc:date>2021-12-02T01:55:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to Create map of several U.S. with 3 circles and also use proc ginside to show points</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-Create-map-of-several-U-S-with-3-circles-and-also-use/m-p/783513#M22369</link>
      <description>&lt;P&gt;The maps.* datasets are all older (and probably out of date a bit), and have the coordinates in radians.&lt;/P&gt;
&lt;P&gt;The mapsgfk.* datasets are new/current, and have the coordinates in degrees.&lt;/P&gt;
&lt;P&gt;Definitely use the newer mapsgfk datasets.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 02 Dec 2021 02:32:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-Create-map-of-several-U-S-with-3-circles-and-also-use/m-p/783513#M22369</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2021-12-02T02:32:30Z</dc:date>
    </item>
    <item>
      <title>Re: How to Create map of several U.S. with 3 circles and also use proc ginside to show points</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-Create-map-of-several-U-S-with-3-circles-and-also-use/m-p/783626#M22371</link>
      <description>Making progress using your example, but how do I add 2 more circles with increased distance from center zip? Thanks</description>
      <pubDate>Thu, 02 Dec 2021 14:28:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-Create-map-of-several-U-S-with-3-circles-and-also-use/m-p/783626#M22371</guid>
      <dc:creator>Juno77</dc:creator>
      <dc:date>2021-12-02T14:28:16Z</dc:date>
    </item>
    <item>
      <title>Re: How to Create map of several U.S. with 3 circles and also use proc ginside to show points</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-Create-map-of-several-U-S-with-3-circles-and-also-use/m-p/783632#M22372</link>
      <description>Re previous Q - Do I have to create 2 more circle datasets, 1 for each distance- that seems so messy.</description>
      <pubDate>Thu, 02 Dec 2021 14:44:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-Create-map-of-several-U-S-with-3-circles-and-also-use/m-p/783632#M22372</guid>
      <dc:creator>Juno77</dc:creator>
      <dc:date>2021-12-02T14:44:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to Create map of several U.S. with 3 circles and also use proc ginside to show points</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-Create-map-of-several-U-S-with-3-circles-and-also-use/m-p/783927#M22387</link>
      <description>&lt;P&gt;In this case, the circles are map areas, and a map can have multiple areas (each with a unique id) ... but, this becomes tricky when the circular areas are overlapping and/or concentric. Proc Gmap can 'draw' them fine, but when you're trying to do calculations (such as using proc ginside to determine which map area a point is inside of), then (I think) SAS procs assume the map areas are non-overlapping. Therefore, in this case, to be totally on the safe side, you'll probably need to at least handle the ginside calculations with 3 separate circle maps.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I haven't tried this particular scenario, and as they say "your mileage may vary"!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 03 Dec 2021 14:00:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-Create-map-of-several-U-S-with-3-circles-and-also-use/m-p/783927#M22387</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2021-12-03T14:00:19Z</dc:date>
    </item>
  </channel>
</rss>

