<?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: A question about creating drill-down maps using &amp;quot;Proc SGMAP&amp;quot;. in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/A-question-about-creating-drill-down-maps-using-quot-Proc-SGMAP/m-p/873707#M23751</link>
    <description>&lt;P&gt;I stored the array of maps on company’s shared drive to let other people to view them. It works perfectly with drill-down feather. I tried to replicate them on our &lt;STRONG&gt;SharePoint &lt;/STRONG&gt;with our IT support. It only works for me, but others can open each map individually and drill-down feature doesn't work after granting access permission to them.&lt;/P&gt;&lt;P&gt;How to fix it?&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;</description>
    <pubDate>Wed, 03 May 2023 19:13:11 GMT</pubDate>
    <dc:creator>t75wez1</dc:creator>
    <dc:date>2023-05-03T19:13:11Z</dc:date>
    <item>
      <title>A question about creating drill-down maps using "Proc SGMAP".</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/A-question-about-creating-drill-down-maps-using-quot-Proc-SGMAP/m-p/866315#M23609</link>
      <description>&lt;P&gt;Hello all,&lt;/P&gt;&lt;P&gt;Hello SAS technical support,&lt;/P&gt;&lt;P&gt;&amp;nbsp;By using “Proc SGMAP”, I created an U.S. map by state with version of ODS html5 file so that I can drill-down to any self-defined geo-area within single state map(total 49) if left mouse-clicking on the area of that state.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I can navigate those maps for myself within SAS system without any issue.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, since most of my stakeholders who need to visualize those maps don’t have SAS system installed on their PC, thus I copied all of maps into the designated internal shared drive/folder. But it doesn’t work well and experiences unbearable long-time delay to open the html file for any state that has its size is greater than 3MB. The larger the size of file, the longer time to delay.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any ideas how I can open them quickly and what's the catch?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Below you can find my SAS code.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks so much for any help in advance.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Ethan&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;**********************************SAS code for creating U.S. map by state *********************;&lt;/P&gt;&lt;P&gt;%let drive=c:\temp;&lt;/P&gt;&lt;P&gt;libname data "&amp;amp;drive";&lt;/P&gt;&lt;P&gt;filename odsout "&amp;amp;drive.";&lt;BR /&gt;%let nameus=USMAP;&lt;BR /&gt;%put &amp;amp;nameus.;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;%let colorlist=cx4dac26 cxb8e186 cyan cxf1b6da cxd01c8b;&lt;BR /&gt;ods path(prepend) work.templat(update);&lt;BR /&gt;proc template;&lt;BR /&gt;define style mystyle;&lt;BR /&gt;parent=styles.htmlblue;&lt;BR /&gt;class GraphValueText /&lt;BR /&gt;font = (Arial,7.5pt,Bold)&lt;BR /&gt;color = black;&lt;BR /&gt;end;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;data plot_usdata;&lt;BR /&gt;set mapssas.uscenter;&lt;BR /&gt;if state ^in(2,15,72) and ocean^='Y';&lt;BR /&gt;long = -long;&lt;BR /&gt;statename = fipstate(state);&lt;BR /&gt;run;&lt;BR /&gt;data US_state;set data.US_state;&lt;BR /&gt;length mylink $100;&lt;BR /&gt;mylink= 'c:\temp\'||compress(STATECODE)||'map.html';&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;ods _all_ close;&lt;/P&gt;&lt;P&gt;ods html5 path=odsout file="&amp;amp;nameus..html" options(bitmap_mode="inline") style=mystyle nogtitle;&lt;BR /&gt;ods graphics on / reset antialiasmax=2000 tipmax=2000 imagemap=on&lt;BR /&gt;width=900px height=700px noborder;&lt;/P&gt;&lt;P&gt;TITLE1 justify=c color=purple height=19pt font='arial/bo' "U.S. Map" height=19pt color=dodgerblue " " height=19pt color=purple " " height=19pt color=dodgerblue " for Index";&lt;BR /&gt;title2 h=1pt " " ;&lt;/P&gt;&lt;P&gt;footnote f="arial/bo" h=4.5pt " " ;&lt;/P&gt;&lt;P&gt;footnote3 f="arial/bo" h=1.8pct color=blue justify=left " " justify=R h=1.8pct c=gray55&lt;BR /&gt;"%left(%qsysfunc(time(),tod7.)) %left(%qsysfunc(today(),weekdatx30.)) ";&lt;/P&gt;&lt;P&gt;proc sgmap mapdata=mapsgfk.us maprespdata=US_state plotdata=plot_usdata;&lt;BR /&gt;choromap index /&lt;BR /&gt;id=statecode mapid=statecode lineattrs=(thickness=0.5 color=grayaa) transparency=.01&lt;BR /&gt;tip=(state tot_pop median_income index ) TIPLABEL=('State' 'Total Population' 'Median Household Income($)' 'Index' )&lt;BR /&gt;colormodel=(&amp;amp;colorlist.) name="&amp;amp;nameus." url=mylink;&lt;BR /&gt;gradlegend "&amp;amp;nameus." / title="Index" TITLEATTRS=(Color=darkblue Family=Arial Size=9.5&lt;BR /&gt;Style=normal Weight=Bold) ;&lt;BR /&gt;text x=x y=y text=statename /&lt;BR /&gt;textattrs=(size=5.5pt color=black);&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;quit;&lt;BR /&gt;ods html5 close;&lt;BR /&gt;ods preferences;&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;**********************************SAS code for self-defined geo-area within single state map (e.g in NC)&amp;nbsp; *********************;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;%let drive=c:\temp;&lt;/P&gt;&lt;P&gt;libname data "&amp;amp;drive";&lt;/P&gt;&lt;P&gt;filename odsout "&amp;amp;drive.";&lt;BR /&gt;%let namest=NCMAP;&lt;BR /&gt;%put &amp;amp;namest.;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;%macro stateloop(state);&lt;BR /&gt;&lt;BR /&gt;%let colorlist=cx4dac26 cxb8e186 cyan cxf1b6da cxd01c8b;&lt;BR /&gt;ods path(prepend) work.templat(update);&lt;BR /&gt;proc template;&lt;BR /&gt;define style mystyle;&lt;BR /&gt;parent=styles.htmlblue;&lt;BR /&gt;class GraphValueText /&lt;BR /&gt;font = (Arial,7.5pt,Bold)&lt;BR /&gt;color = black;&lt;BR /&gt;end;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ods _all_ close;&lt;BR /&gt;ods html5 path=odsout file="&amp;amp;namest..html" options(bitmap_mode="inline") style=mystyle nogtitle;&lt;BR /&gt;ods graphics on / reset=all outputfmt=png imagemap tipmax=25000&lt;BR /&gt;width=900px height=700px noborder;&lt;/P&gt;&lt;P&gt;TITLE1 justify=c color=dodgerblue height=17pt font='arial/bo' "Map in" height=17pt color=dodgerblue " " height=17pt color=purple " &amp;amp;stname." height=17pt color=dodgerblue " for Index";&lt;BR /&gt;title2 h=14pt " " ;&lt;/P&gt;&lt;P&gt;footnote f="arial/bo" h=4.5pt " " ;&lt;BR /&gt;footnote3 justify=R h=1.8pct c=gray55&lt;BR /&gt;"%left(%qsysfunc(time(),tod7.)) %left(%qsysfunc(today(),weekdatx30.)) ";&lt;/P&gt;&lt;P&gt;proc sgmap mapdata=data.NC_state maprespdata=data.NC_reported_data plotdata=data.NC_overlay_text;&lt;BR /&gt;&lt;BR /&gt;esrimap url="&lt;A href="https://services.arcgisonline.com/ArcGIS/rest/services/World_Street_Map/MapServer" target="_blank"&gt;https://services.arcgisonline.com/ArcGIS/rest/services/World_Street_Map/MapServer&lt;/A&gt;";&lt;BR /&gt;styleattrs datacolors=(&amp;amp;colorlist.);&lt;BR /&gt;choromap &amp;amp;EQ. / mapid=lta_id id=lta_id&lt;BR /&gt;lineattrs=(thickness=0.5 color=grayaa) transparency=.01&lt;BR /&gt;tip=(LTA_ID tot_pop LTA_income index rank) TIPLABEL=('ID' 'Total Population' 'Median Household Income($)' ' Index' 'Index Ranking') colormodel=(&amp;amp;colorlist.)&lt;BR /&gt;name="&amp;amp;namest.";&lt;BR /&gt;gradlegend "&amp;amp;namest." / title="Index" TITLEATTRS=(Color=darkblue Family=Arial Size=9.5&lt;BR /&gt;Style=normal Weight=Bold) ;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;series x=outlinex y=outliney / group=grp lineattrs=(color=black thickness=0.03px);&lt;BR /&gt;run;&lt;BR /&gt;quit;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;title1 h=15pt "Ranked by Index in" "A0"x height=15pt color=purple "&amp;amp;stname." ;&lt;BR /&gt;title2 color=grey h=8pt "(in descending order)";&lt;BR /&gt;footnote;&lt;BR /&gt;options pagesize=1000 nobyline;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;proc report data=data.NC_reported_data style(header)=[background=white foreground=gray33] split='*'&lt;BR /&gt;STYLE(REPORT)={background=white font_size=1.2 cellpadding=2.6pt cellspacing=0pt}&lt;BR /&gt;STYLE(HEADER)={foreground=purple background=lightblue font_weight=bold font_size=9.5pt}&lt;BR /&gt;STYLE(COLUMN)={background=beige foreground=black font_size=1.8};&lt;BR /&gt;&lt;BR /&gt;column ((" -- Area --" LTA ) ("Demo" tot_pop tot_birth LTA_income) (" " index rank) );&lt;BR /&gt;define LTA / "ID#" STYLE(COLUMN)={background=beige} width=9;&lt;BR /&gt;&lt;BR /&gt;define tot_pop / analysis sum "Total Population" STYLE(COLUMN)={background=aliceblue};&lt;/P&gt;&lt;P&gt;define LTA_income /analysis mean "Median Household Income" STYLE(COLUMN)={background=aliceblue};&lt;/P&gt;&lt;P&gt;define index/ analysis mean "Index" format=comma7.0 STYLE(COLUMN)={background=wheat} width=5;&lt;BR /&gt;define rank/ "Ranking" STYLE(COLUMN)={background=wheat font_size=1.0} ;&lt;/P&gt;&lt;P&gt;rbreak after / summarize style=[font_weight=bold];&lt;/P&gt;&lt;P&gt;compute after;&lt;/P&gt;&lt;P&gt;LTA= 'Summary';&lt;/P&gt;&lt;P&gt;endcomp;&lt;BR /&gt;run;&lt;BR /&gt;quit;&lt;BR /&gt;ods html5 close;&lt;BR /&gt;ods preferences;&lt;/P&gt;&lt;P&gt;%mend stateloop;&lt;BR /&gt;%stateloop(NC);&lt;/P&gt;</description>
      <pubDate>Sat, 25 Mar 2023 23:33:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/A-question-about-creating-drill-down-maps-using-quot-Proc-SGMAP/m-p/866315#M23609</guid>
      <dc:creator>t75wez1</dc:creator>
      <dc:date>2023-03-25T23:33:22Z</dc:date>
    </item>
    <item>
      <title>Re: A question about creating drill-down maps using "Proc SGMAP".</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/A-question-about-creating-drill-down-maps-using-quot-Proc-SGMAP/m-p/866384#M23610</link>
      <description>&lt;P&gt;When you create the state maps for each individual state, with the&amp;nbsp;&lt;SPAN&gt;self-defined geo-areas, I suspect that your geo-areas probably have a lot more detail (more points along their borders) than you really need. You could use Proc Greduce to add a 'density' variable to your dataset, and then subset the dataset to only use the border points 'where density&amp;lt;=3' (or possibly &amp;lt;=2 or &amp;lt;=1 ... you could try it various ways, and see what gets you a small enough filesize but still provides enough detail in the borders). This way, when the html is generated describing the areas with mouse-over or drill-down, the html doesn't have to describe so many points along the borders ... and then the html file is smaller.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 26 Mar 2023 14:56:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/A-question-about-creating-drill-down-maps-using-quot-Proc-SGMAP/m-p/866384#M23610</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2023-03-26T14:56:39Z</dc:date>
    </item>
    <item>
      <title>Re: A question about creating drill-down maps using "Proc SGMAP".</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/A-question-about-creating-drill-down-maps-using-quot-Proc-SGMAP/m-p/866405#M23611</link>
      <description>&lt;P&gt;Many thanks Rob for your prompt response.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I fixed the issue by subscribing to your suggestion on&amp;nbsp;&lt;SPAN&gt;only using the border points 'where density&amp;lt;=2.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;May I ask another question:&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;The SGMAP CHOROMAP statement needs to include the URL= option that points to a variable that contains the link for each state. For example:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;For my output saved in c:\temp and the NC value in the US_STATE response data set the variable would look like: &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;data US_state;set data.US_state;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;length mylink $100;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;mylink= '&lt;STRONG&gt;c:\temp\&lt;/STRONG&gt;'||compress(STATECODE)||'map.html';&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;run;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;I wonder whether I can make the location of drive/folder to output those HTML files implicit?&lt;/P&gt;&lt;P&gt;If I remember correctly, you've done similar things somewhere in your "Proc gmap" example from&amp;nbsp;&lt;A href="https://robslink.com/SAS/Home.htm" target="_blank"&gt;Robert Allison's SAS Graphics Examples! (robslink.com).&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In other words, how to make portable for those HTML files without specifying the location for the url link? Because I need to copy those files to final shared drive/folder after QA process on my local drive/folder "c:\temp".&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I could be wrong, any thoughts?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks again for your help.&lt;/P&gt;&lt;P&gt;Ethan&lt;/P&gt;</description>
      <pubDate>Sun, 26 Mar 2023 19:03:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/A-question-about-creating-drill-down-maps-using-quot-Proc-SGMAP/m-p/866405#M23611</guid>
      <dc:creator>t75wez1</dc:creator>
      <dc:date>2023-03-26T19:03:15Z</dc:date>
    </item>
    <item>
      <title>Re: A question about creating drill-down maps using "Proc SGMAP".</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/A-question-about-creating-drill-down-maps-using-quot-Proc-SGMAP/m-p/867576#M23630</link>
      <description>&lt;P&gt;In my multi-file drilldown examples, I put the drilldowns in the current directory or a subfolder of the current directory, and then put the relative path in the url (rather than the full path).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 31 Mar 2023 21:17:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/A-question-about-creating-drill-down-maps-using-quot-Proc-SGMAP/m-p/867576#M23630</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2023-03-31T21:17:51Z</dc:date>
    </item>
    <item>
      <title>Re: A question about creating drill-down maps using "Proc SGMAP".</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/A-question-about-creating-drill-down-maps-using-quot-Proc-SGMAP/m-p/867591#M23631</link>
      <description>&lt;P&gt;Could you show an example about it?&lt;/P&gt;&lt;P&gt;Thx.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 31 Mar 2023 22:45:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/A-question-about-creating-drill-down-maps-using-quot-Proc-SGMAP/m-p/867591#M23631</guid>
      <dc:creator>t75wez1</dc:creator>
      <dc:date>2023-03-31T22:45:18Z</dc:date>
    </item>
    <item>
      <title>Re: A question about creating drill-down maps using "Proc SGMAP".</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/A-question-about-creating-drill-down-maps-using-quot-Proc-SGMAP/m-p/868598#M23641</link>
      <description>&lt;P&gt;Rather than ...&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;mylink= 'c:\temp\'||compress(STATECODE)||'map.html';&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Use the following if the drilldowns are in the same folder as the main html page ...&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;mylink= compress(STATECODE)||'map.html';&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 07 Apr 2023 13:41:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/A-question-about-creating-drill-down-maps-using-quot-Proc-SGMAP/m-p/868598#M23641</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2023-04-07T13:41:14Z</dc:date>
    </item>
    <item>
      <title>Re: A question about creating drill-down maps using "Proc SGMAP".</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/A-question-about-creating-drill-down-maps-using-quot-Proc-SGMAP/m-p/868699#M23642</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Rob,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;My issue is resolved.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I'm very appreciative of both of your suggestion here!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 08 Apr 2023 14:56:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/A-question-about-creating-drill-down-maps-using-quot-Proc-SGMAP/m-p/868699#M23642</guid>
      <dc:creator>t75wez1</dc:creator>
      <dc:date>2023-04-08T14:56:44Z</dc:date>
    </item>
    <item>
      <title>Re: A question about creating drill-down maps using "Proc SGMAP".</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/A-question-about-creating-drill-down-maps-using-quot-Proc-SGMAP/m-p/873707#M23751</link>
      <description>&lt;P&gt;I stored the array of maps on company’s shared drive to let other people to view them. It works perfectly with drill-down feather. I tried to replicate them on our &lt;STRONG&gt;SharePoint &lt;/STRONG&gt;with our IT support. It only works for me, but others can open each map individually and drill-down feature doesn't work after granting access permission to them.&lt;/P&gt;&lt;P&gt;How to fix it?&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;</description>
      <pubDate>Wed, 03 May 2023 19:13:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/A-question-about-creating-drill-down-maps-using-quot-Proc-SGMAP/m-p/873707#M23751</guid>
      <dc:creator>t75wez1</dc:creator>
      <dc:date>2023-05-03T19:13:11Z</dc:date>
    </item>
    <item>
      <title>Re: A question about creating drill-down maps using "Proc SGMAP".</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/A-question-about-creating-drill-down-maps-using-quot-Proc-SGMAP/m-p/874791#M23780</link>
      <description>&lt;P&gt;I'm not a big fan of Sharepoint, and have never tried to disseminate SAS html drilldown graphs on Sharepoint.&lt;/P&gt;
&lt;P&gt;(maybe somebody else has some tips/experience?)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 09 May 2023 22:21:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/A-question-about-creating-drill-down-maps-using-quot-Proc-SGMAP/m-p/874791#M23780</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2023-05-09T22:21:38Z</dc:date>
    </item>
    <item>
      <title>Re: A question about creating drill-down maps using "Proc SGMAP".</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/A-question-about-creating-drill-down-maps-using-quot-Proc-SGMAP/m-p/875264#M23783</link>
      <description>&lt;P&gt;Maybe Chris Hemedinger can help address the issue.&lt;/P&gt;</description>
      <pubDate>Thu, 11 May 2023 15:48:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/A-question-about-creating-drill-down-maps-using-quot-Proc-SGMAP/m-p/875264#M23783</guid>
      <dc:creator>t75wez1</dc:creator>
      <dc:date>2023-05-11T15:48:06Z</dc:date>
    </item>
  </channel>
</rss>

