<?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: Numbered Marking on a Map in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/Numbered-Marking-on-a-Map/m-p/34525#M1100</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi ... don't think so, but the LEGEND can still be used to give info on map areas, for example ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;data points (drop=state county);&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;retain xsys ysys '2' hsys '3' size 2 function 'label' style 'calibri' cbox 'white' when 'a';&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;set sashelp.zipcode (keep=state county x y zip obs=10);&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;where state eq 10 and county eq 1;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;x = -x * constant('pi') / 180;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;y = y * constant('pi') / 180;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;text = cat(_n_);&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;run;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;* all Delaware counties used;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;data both;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;set maps.counties (where=(state eq 10)) points;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;run;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;proc gproject data=both out=proj;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;id county;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;run;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;goptions reset=all ftext='calibri' htext=2 gunit=pct;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;* legend now includes both the ZIP labels and symbols (bars) for map areas;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;legend1 mode=share origin=(2,20)pct across=1 shape=bar(3,4)pct&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;value=(j=r 'KENT' &lt;STRONG style="font-family: 'courier new', courier;"&gt;j=r 'NEW CASTLE' &lt;/STRONG&gt;j=r 'SUSSEX')&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;label=(position=top j=r 'CODE:&amp;nbsp; ZIP' j=r '1: 19901' j=r '2: 19902' j=r '3: 19902' j=r '4: 19902' j=r '5: 19902'&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;j=r '6: 19902' j=r '7: 19934' j=r '8: 19936' j=r '9: 19938' j=r '10: 19943'&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;j=r " " j=r 'COUNTIES');&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;* some white space on the left;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;title1 a=90 ls=2;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;proc gmap data=proj map=proj (where=(segment)) anno=proj (where=(^segment));&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;id county;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;choro county / levels=3 legend=legend1;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;note h=3 j=l 'DELAWARE COUNTIES' j=l 'WITH 10 LABELED ZIPS';&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;run;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;quit;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/11652iEDF57B4F5D003B49/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="delaware.png" title="delaware.png" /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 20 Jan 2012 22:31:59 GMT</pubDate>
    <dc:creator>MikeZdeb</dc:creator>
    <dc:date>2012-01-20T22:31:59Z</dc:date>
    <item>
      <title>Numbered Marking on a Map</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Numbered-Marking-on-a-Map/m-p/34515#M1090</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am making a map and have twenty different points I would like to mark. Right now I have a star marking each point. Is there a way for me to use mark each point using a corresponding number instead of the star?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jan 2012 15:06:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Numbered-Marking-on-a-Map/m-p/34515#M1090</guid>
      <dc:creator>AAWTomHanks</dc:creator>
      <dc:date>2012-01-20T15:06:04Z</dc:date>
    </item>
    <item>
      <title>Numbered Marking on a Map</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Numbered-Marking-on-a-Map/m-p/34516#M1091</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are you using Proc Gmap to draw the map, and placing the stars on it with annotate?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If so .... then you can put any text you want (such as a number) in the text variable, instead of the star.&amp;nbsp; You'll probably also need to change the style= variable (it's probably something like style='marker', and you'll probably want to change it to style='albany amt' ... or leave out the style variable and let it default).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jan 2012 15:16:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Numbered-Marking-on-a-Map/m-p/34516#M1091</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2012-01-20T15:16:03Z</dc:date>
    </item>
    <item>
      <title>Numbered Marking on a Map</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Numbered-Marking-on-a-Map/m-p/34517#M1092</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes I am using Proc Gmap and annotate. Thanks for your help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jan 2012 15:18:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Numbered-Marking-on-a-Map/m-p/34517#M1092</guid>
      <dc:creator>AAWTomHanks</dc:creator>
      <dc:date>2012-01-20T15:18:36Z</dc:date>
    </item>
    <item>
      <title>Numbered Marking on a Map</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Numbered-Marking-on-a-Map/m-p/34518#M1093</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am having trouble again I need the marker to go up from 1 to 20. How can I do this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jan 2012 15:24:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Numbered-Marking-on-a-Map/m-p/34518#M1093</guid>
      <dc:creator>AAWTomHanks</dc:creator>
      <dc:date>2012-01-20T15:24:15Z</dc:date>
    </item>
    <item>
      <title>Numbered Marking on a Map</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Numbered-Marking-on-a-Map/m-p/34519#M1094</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Could you explain a little more?&lt;/P&gt;&lt;P&gt;I can't quite picture in my mind what you're wanting.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jan 2012 15:27:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Numbered-Marking-on-a-Map/m-p/34519#M1094</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2012-01-20T15:27:45Z</dc:date>
    </item>
    <item>
      <title>Numbered Marking on a Map</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Numbered-Marking-on-a-Map/m-p/34520#M1095</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; My bad about being a little vague. I have a map and I have 20 buildings with different names, where at the moment I have all of them marked by the number "1" on the map. What I am looking for as my end result is to have a key off to the side of the map with the buildings names and a number associated with the building, 1 through 20. These numbers would coincide with the number on the map showing where the buildings are. Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jan 2012 15:32:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Numbered-Marking-on-a-Map/m-p/34520#M1095</guid>
      <dc:creator>AAWTomHanks</dc:creator>
      <dc:date>2012-01-20T15:32:52Z</dc:date>
    </item>
    <item>
      <title>Numbered Marking on a Map</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Numbered-Marking-on-a-Map/m-p/34521#M1096</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ahh! - ok...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, presumably you have an annotate data set, with X &amp;amp; Y variables containing the location you want each number/label (formerly 'star') at.&amp;nbsp; And you are annotating this text with the annotate function='label'.&amp;nbsp; If the value is currently coming out as a '1', that indicates that the value in your "text" variable is '1'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You'll want to set your text variable to the values you want annotated on the map.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here's an over-simplified pseudo-example...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;x=23; y=47; text='1';&lt;/P&gt;&lt;P&gt;x=34; y=12; text='2';&lt;/P&gt;&lt;P&gt;x=87; y=43; text='3';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I recommend doing a "proc print" of your annotate data, or look at it with the table viewer.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jan 2012 15:40:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Numbered-Marking-on-a-Map/m-p/34521#M1096</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2012-01-20T15:40:06Z</dc:date>
    </item>
    <item>
      <title>Numbered Marking on a Map</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Numbered-Marking-on-a-Map/m-p/34522#M1097</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks a lot for your help. I am assuming that this long text variable will be put inbetween style and color, right?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jan 2012 15:43:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Numbered-Marking-on-a-Map/m-p/34522#M1097</guid>
      <dc:creator>AAWTomHanks</dc:creator>
      <dc:date>2012-01-20T15:43:29Z</dc:date>
    </item>
    <item>
      <title>Re: Numbered Marking on a Map</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Numbered-Marking-on-a-Map/m-p/34523#M1098</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi ... you can add that number:building name key with a legend&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here's an example that uses one county in Delaware with 10 zip centroid locations added&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;data points (drop=state county);&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;retain xsys ysys '2' hsys '3' size 2 function 'label' style 'calibri' cbox 'white' when 'a';&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;set sashelp.zipcode (keep=state county x y zip obs=10);&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;where state eq 10 and county eq 1;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;x = -x * constant('pi') / 180;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;y = y * constant('pi') / 180;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;text = cat(_n_);&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;run;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;data both;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;set maps.counties (where=(state eq 10 and county eq 1)) points;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;run;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;proc gproject data=both out=proj;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;id county;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;run;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;goptions reset=all ftext='calibri' htext=3 gunit=pct;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;legend1 mode=share origin=(2,40)pct &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;value=none shape=bar(.00001,.00001)pct &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;label=(&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;j=r 'CODE:&amp;nbsp; ZIP' &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;j=r '1: 19901' &lt;/STRONG&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;j=r '2: 19902' &lt;/STRONG&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;j=r '3: 19902' &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;j=r '4: 19902' &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;j=r '5: 19902'&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;j=r '6: 19902' &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;j=r '7: 19934' &lt;/STRONG&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;j=r '8: 19936' &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;j=r '9: 19938' &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;j=r '10: 19943')&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;proc gmap data=proj(obs=1) map=proj (where=(segment)) anno=proj (where=(^segment));&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;id county;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;choro county / legend = legend1;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;run;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;quit;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/11787i22E1E8847236D3E6/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="delaware.png" title="delaware.png" /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jan 2012 17:58:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Numbered-Marking-on-a-Map/m-p/34523#M1098</guid>
      <dc:creator>MikeZdeb</dc:creator>
      <dc:date>2012-01-20T17:58:55Z</dc:date>
    </item>
    <item>
      <title>Numbered Marking on a Map</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Numbered-Marking-on-a-Map/m-p/34524#M1099</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Is there a way to put two legends on the map?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jan 2012 19:00:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Numbered-Marking-on-a-Map/m-p/34524#M1099</guid>
      <dc:creator>AAWTomHanks</dc:creator>
      <dc:date>2012-01-20T19:00:53Z</dc:date>
    </item>
    <item>
      <title>Re: Numbered Marking on a Map</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Numbered-Marking-on-a-Map/m-p/34525#M1100</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi ... don't think so, but the LEGEND can still be used to give info on map areas, for example ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;data points (drop=state county);&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;retain xsys ysys '2' hsys '3' size 2 function 'label' style 'calibri' cbox 'white' when 'a';&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;set sashelp.zipcode (keep=state county x y zip obs=10);&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;where state eq 10 and county eq 1;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;x = -x * constant('pi') / 180;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;y = y * constant('pi') / 180;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;text = cat(_n_);&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;run;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;* all Delaware counties used;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;data both;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;set maps.counties (where=(state eq 10)) points;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;run;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;proc gproject data=both out=proj;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;id county;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;run;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;goptions reset=all ftext='calibri' htext=2 gunit=pct;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;* legend now includes both the ZIP labels and symbols (bars) for map areas;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;legend1 mode=share origin=(2,20)pct across=1 shape=bar(3,4)pct&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;value=(j=r 'KENT' &lt;STRONG style="font-family: 'courier new', courier;"&gt;j=r 'NEW CASTLE' &lt;/STRONG&gt;j=r 'SUSSEX')&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;label=(position=top j=r 'CODE:&amp;nbsp; ZIP' j=r '1: 19901' j=r '2: 19902' j=r '3: 19902' j=r '4: 19902' j=r '5: 19902'&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;j=r '6: 19902' j=r '7: 19934' j=r '8: 19936' j=r '9: 19938' j=r '10: 19943'&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;j=r " " j=r 'COUNTIES');&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;* some white space on the left;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;title1 a=90 ls=2;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;proc gmap data=proj map=proj (where=(segment)) anno=proj (where=(^segment));&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;id county;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;choro county / levels=3 legend=legend1;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;note h=3 j=l 'DELAWARE COUNTIES' j=l 'WITH 10 LABELED ZIPS';&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;run;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;quit;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/11652iEDF57B4F5D003B49/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="delaware.png" title="delaware.png" /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jan 2012 22:31:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Numbered-Marking-on-a-Map/m-p/34525#M1100</guid>
      <dc:creator>MikeZdeb</dc:creator>
      <dc:date>2012-01-20T22:31:59Z</dc:date>
    </item>
  </channel>
</rss>

