<?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: Heatmap with geographic features? in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/Heatmap-with-geographic-features/m-p/713419#M20973</link>
    <description>&lt;P&gt;Can you post an example that's similar to the map you'd like to create?&lt;/P&gt;</description>
    <pubDate>Fri, 22 Jan 2021 17:05:50 GMT</pubDate>
    <dc:creator>GraphGuy</dc:creator>
    <dc:date>2021-01-22T17:05:50Z</dc:date>
    <item>
      <title>Heatmap with geographic features?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Heatmap-with-geographic-features/m-p/713397#M20967</link>
      <description>&lt;P&gt;I'm using Heatmap to display the distribution of meteor observations over a range of latitudes and longitudes. I'd like to include some geographic markers on the map to show the locations of a few major towns and highways to help the viewer view the distribution of meteor observations within a geographic context. How can I do that?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Gene&lt;/P&gt;</description>
      <pubDate>Fri, 22 Jan 2021 16:07:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Heatmap-with-geographic-features/m-p/713397#M20967</guid>
      <dc:creator>genemroz</dc:creator>
      <dc:date>2021-01-22T16:07:16Z</dc:date>
    </item>
    <item>
      <title>Re: Heatmap with geographic features?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Heatmap-with-geographic-features/m-p/713401#M20968</link>
      <description>&lt;P&gt;What version of SAS are you using? If you are not sure, run this statement and post the response from your log:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;%put &amp;amp;sysvlong;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I ask this question because it could greatly impact the answer to your question.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks!&lt;/P&gt;
&lt;P&gt;Dan&lt;/P&gt;</description>
      <pubDate>Fri, 22 Jan 2021 16:15:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Heatmap-with-geographic-features/m-p/713401#M20968</guid>
      <dc:creator>DanH_sas</dc:creator>
      <dc:date>2021-01-22T16:15:41Z</dc:date>
    </item>
    <item>
      <title>Re: Heatmap with geographic features?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Heatmap-with-geographic-features/m-p/713404#M20969</link>
      <description>&lt;P&gt;Thanks for the prompt response!&amp;nbsp; I hope this is the right answer:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: inherit;"&gt;ISAS Studio University Edition.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Release: 3.8 (Basic Edition)&lt;/P&gt;&lt;P&gt;SAS release 9.04.01M6P11072018&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Gene&lt;/P&gt;</description>
      <pubDate>Fri, 22 Jan 2021 16:22:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Heatmap-with-geographic-features/m-p/713404#M20969</guid>
      <dc:creator>genemroz</dc:creator>
      <dc:date>2021-01-22T16:22:06Z</dc:date>
    </item>
    <item>
      <title>Re: Heatmap with geographic features?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Heatmap-with-geographic-features/m-p/713410#M20970</link>
      <description>&lt;P&gt;Good, you should be able to PROC SGMAP to get what you want. Here is an example (with non-sensical data :-)) that should produce what you want:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sgmap plotdata=sashelp.class;
openstreetmap;
scatter x=weight y=height / markerattrs=(symbol=circlefilled) transparency=0.5;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;I added the filled circle shape and transparency to help see concentrations of sighting at/near the same lat/long. If you update to the latest University edition, there are a number of new enhancements to PROC SGMAP, including COLORRESPONSE support for SCATTER and BUBBLE plots. You can use that option to help simulate your heatmap . let me know if you have any more questions about it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks!&lt;/P&gt;
&lt;P&gt;Dan&lt;/P&gt;</description>
      <pubDate>Fri, 22 Jan 2021 16:39:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Heatmap-with-geographic-features/m-p/713410#M20970</guid>
      <dc:creator>DanH_sas</dc:creator>
      <dc:date>2021-01-22T16:39:03Z</dc:date>
    </item>
    <item>
      <title>Re: Heatmap with geographic features?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Heatmap-with-geographic-features/m-p/713416#M20972</link>
      <description>Example Two in this paper has both markers and a filled in choro map which may be what you're after.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://www.sas.com/content/dam/SAS/support/en/sas-global-forum-proceedings/2019/3314-2019.pdf" target="_blank"&gt;https://www.sas.com/content/dam/SAS/support/en/sas-global-forum-proceedings/2019/3314-2019.pdf&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;The documentation contains several more examples:&lt;BR /&gt;&lt;A href="https://documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.5&amp;amp;docsetId=grmapref&amp;amp;docsetTarget=n18zwxj3couxmgn161trks2usk2v.htm&amp;amp;locale=en" target="_blank"&gt;https://documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.5&amp;amp;docsetId=grmapref&amp;amp;docsetTarget=n18zwxj3couxmgn161trks2usk2v.htm&amp;amp;locale=en&lt;/A&gt;</description>
      <pubDate>Fri, 22 Jan 2021 17:03:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Heatmap-with-geographic-features/m-p/713416#M20972</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2021-01-22T17:03:29Z</dc:date>
    </item>
    <item>
      <title>Re: Heatmap with geographic features?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Heatmap-with-geographic-features/m-p/713419#M20973</link>
      <description>&lt;P&gt;Can you post an example that's similar to the map you'd like to create?&lt;/P&gt;</description>
      <pubDate>Fri, 22 Jan 2021 17:05:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Heatmap-with-geographic-features/m-p/713419#M20973</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2021-01-22T17:05:50Z</dc:date>
    </item>
    <item>
      <title>Re: Heatmap with geographic features?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Heatmap-with-geographic-features/m-p/713426#M20974</link>
      <description>&lt;P&gt;Robert,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for responding.&amp;nbsp; I've looked at many of the excellent graphs on your excellent blog site and haven't quite found one that looks like what I'm envisioning--which is a semi-transparent heatmap that overlays a geographical map.&amp;nbsp; Alternatively, I'd be happy if I could plot a few reference markers indicating the locations of cities onto the Heatmap.&amp;nbsp; I'll work on preparing an example of the heatmap that displays the observation count and an example of a scatter map that displays the locations of the observations.&amp;nbsp; I'll post them here today when I have them prepared.&amp;nbsp; The desire is to merge those together somehow.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Gene&lt;/P&gt;</description>
      <pubDate>Fri, 22 Jan 2021 17:34:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Heatmap-with-geographic-features/m-p/713426#M20974</guid>
      <dc:creator>genemroz</dc:creator>
      <dc:date>2021-01-22T17:34:35Z</dc:date>
    </item>
    <item>
      <title>Re: Heatmap with geographic features?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Heatmap-with-geographic-features/m-p/713439#M20975</link>
      <description>&lt;P&gt;Robert,&lt;/P&gt;&lt;P&gt;Attached is a Heatmap that shows the count of meteor observations (obs) by a network of cameras over New Mexico for the month of November 2020.&amp;nbsp; The intersection of the reference lines denotes the location of Albuquerque (ABQ).&amp;nbsp; I'd like to show the locations of other cities, preferably as some labelled icon, within the latitude/longitude range of the map.&amp;nbsp; I would also like to show the location of the&amp;nbsp; two major interstate highways that bisect the area N/S (I-25) and E/W(I-40) as that would help the viewer see the coverage of the camera network in a geographic context.&amp;nbsp; I can plot the&amp;nbsp; lat/long locations of the heatmap elements onto a esri or openstreet map but don't know how to get the "obs" count displayed on that map.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope this helps and thanks again for your offer to help.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Gene&lt;/P&gt;</description>
      <pubDate>Fri, 22 Jan 2021 18:26:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Heatmap-with-geographic-features/m-p/713439#M20975</guid>
      <dc:creator>genemroz</dc:creator>
      <dc:date>2021-01-22T18:26:22Z</dc:date>
    </item>
    <item>
      <title>Re: Heatmap with geographic features?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Heatmap-with-geographic-features/m-p/713444#M20976</link>
      <description>&lt;P&gt;Can you use the DATALABEL option to display the "obs" count?&lt;/P&gt;</description>
      <pubDate>Fri, 22 Jan 2021 18:33:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Heatmap-with-geographic-features/m-p/713444#M20976</guid>
      <dc:creator>DanH_sas</dc:creator>
      <dc:date>2021-01-22T18:33:29Z</dc:date>
    </item>
    <item>
      <title>Re: Heatmap with geographic features?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Heatmap-with-geographic-features/m-p/714322#M20987</link>
      <description>&lt;P&gt;This is not 'exactly' what you asked for, but I think it will be a good starting point...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I put together this little example that might help. Although sgmap doesn't allow you to overlay a 'heatmap', sgplot (which supports heatmaps) does let you plot geographical/map polygons, and other geographically visual reference points.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In this example, I use sgplot to draw county polygons for New Mexico, and overlay some city markers, and then overlay a heatmap (using fake/random data for the demo). If you have lat/long points along the roads, you could also annotate or overlay them as lines.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;data &lt;STRONG&gt;my_map&lt;/STRONG&gt;; set mapsgfk.us_counties (where=(density&amp;lt;=3 and statecode='NM'));&lt;BR /&gt;length id_plus_segment $50;&lt;BR /&gt;id_plus_segment=trim(left(id))||'_'||trim(left(segment));&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;/* generate some random/fake data, for the demo */&lt;BR /&gt;data &lt;STRONG&gt;grid_data&lt;/STRONG&gt;;&lt;BR /&gt;do grid_lat=32.5 to 35 by .5;&lt;BR /&gt;&amp;nbsp;do grid_long=-108.5 to -106 by .5;&lt;BR /&gt;&amp;nbsp; count=round(ranuni(123)*5);&lt;BR /&gt;&amp;nbsp; output;&lt;BR /&gt;&amp;nbsp; end;&lt;BR /&gt;&amp;nbsp;end;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;data &lt;STRONG&gt;city_data&lt;/STRONG&gt;; set mapsgfk.uscity (where=(statecode='NM' and pop_type^='under10k'));&lt;BR /&gt;city_long=long;&lt;BR /&gt;city_lat=lat;&lt;BR /&gt;if capital='Y' then citylabel=city;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;data &lt;STRONG&gt;all_data&lt;/STRONG&gt;; set my_map grid_data city_data;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;title h=12pt "SGPlot: 'Heatmap' grid overlayed on map polygons";&lt;BR /&gt;proc &lt;STRONG&gt;sgplot&lt;/STRONG&gt; data=&lt;STRONG&gt;all_data&lt;/STRONG&gt; noborder noautolegend;&lt;BR /&gt;&lt;STRONG&gt;polygon&lt;/STRONG&gt; x=long y=lat id=id_plus_segment / tip=none&lt;BR /&gt;&amp;nbsp; &amp;nbsp;nofill outline lineattrs=(color=black);&lt;BR /&gt;&lt;STRONG&gt;scatter&lt;/STRONG&gt; x=city_long y=city_lat / markerattrs=(color=blue)&lt;BR /&gt;&amp;nbsp; &amp;nbsp;datalabel=citylabel datalabelpos=top datalabelattrs=(color=blue);&lt;BR /&gt;&lt;STRONG&gt;heatmapparm&lt;/STRONG&gt; x=grid_long y=grid_lat colorresponse=count /&lt;BR /&gt;&amp;nbsp; &amp;nbsp;outline outlineattrs=(color=graycc) transparency=.2&lt;BR /&gt;&amp;nbsp; &amp;nbsp;colormodel=(cxfeebe2 cxfbb4b9 cxf768a1 cxc51b8a cx7a0177);&lt;BR /&gt;&lt;STRONG&gt;text&lt;/STRONG&gt; x=grid_long y=grid_lat text=count;&lt;BR /&gt;gradlegend;&lt;BR /&gt;xaxis display=(nolabels);&lt;BR /&gt;yaxis display=(nolabels);&lt;BR /&gt;run;&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="heatmap.png" style="width: 800px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/53923i2CD5982ABE58A6D0/image-size/large?v=v2&amp;amp;px=999" role="button" title="heatmap.png" alt="heatmap.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jan 2021 17:05:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Heatmap-with-geographic-features/m-p/714322#M20987</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2021-01-26T17:05:05Z</dc:date>
    </item>
    <item>
      <title>Re: Heatmap with geographic features?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Heatmap-with-geographic-features/m-p/714345#M20988</link>
      <description>&lt;P&gt;Robert,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks so much for taking the time to work out this solution-it looks very promising.&amp;nbsp; I tried running your code but SAS University Edition kicked back an error message:&amp;nbsp; "The SAS system library MAPSGFK may not be reassigned".&amp;nbsp; I don't know what that means nor how to fix it.&amp;nbsp; Any ideas?&amp;nbsp; Thanks!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Gene&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jan 2021 18:04:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Heatmap-with-geographic-features/m-p/714345#M20988</guid>
      <dc:creator>genemroz</dc:creator>
      <dc:date>2021-01-26T18:04:43Z</dc:date>
    </item>
    <item>
      <title>Re: Heatmap with geographic features?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Heatmap-with-geographic-features/m-p/714358#M20989</link>
      <description>&lt;P&gt;Sound like you probably don't have the map polygons (which are shipped with the SAS/Graph product, which I don't think is included with the free University Edition).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You could try "proc print data=mapsgfk.us_counties; run;" to see if&amp;nbsp; you have the US county map dataset.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jan 2021 18:40:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Heatmap-with-geographic-features/m-p/714358#M20989</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2021-01-26T18:40:15Z</dc:date>
    </item>
    <item>
      <title>Re: Heatmap with geographic features?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Heatmap-with-geographic-features/m-p/714372#M20990</link>
      <description>&lt;P&gt;Hmmm, so close yet so far.&amp;nbsp; You are correct that the free SAS University Edition does not include SAS/Graph.&amp;nbsp; I need a Plan B.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Gene&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jan 2021 19:09:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Heatmap-with-geographic-features/m-p/714372#M20990</guid>
      <dc:creator>genemroz</dc:creator>
      <dc:date>2021-01-26T19:09:23Z</dc:date>
    </item>
    <item>
      <title>Re: Heatmap with geographic features?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Heatmap-with-geographic-features/m-p/714392#M20991</link>
      <description>&lt;P&gt;Answering my own post:&amp;nbsp; Plan B is to sign up for SAS OnDemand for Academics which includes SAS/Graph.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried Robert Allison's code there and it ran fine.&amp;nbsp; I'll have to do some tweaking of it to fit my particular circumstances but this appears to be a viable path forward so I will accept his solution.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks, Robert, for your help.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Gene&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jan 2021 19:43:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Heatmap-with-geographic-features/m-p/714392#M20991</guid>
      <dc:creator>genemroz</dc:creator>
      <dc:date>2021-01-26T19:43:43Z</dc:date>
    </item>
    <item>
      <title>Re: Heatmap with geographic features?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Heatmap-with-geographic-features/m-p/714455#M20992</link>
      <description>&lt;P&gt;I modified Robert Allison's code and introduced my own data.&amp;nbsp; Instead of the HEATMAPPARM statement which is used for discrete data, I used the HEATMAP statement to bin the continuous data. See code below. The map (attached) has become distorted.&amp;nbsp; I don't know why?&amp;nbsp; Any ideas?&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data my_map; set mapsgfk.us_counties (where=(density&amp;lt;=3 and statecode='NM'));
length id_plus_segment $50;
id_plus_segment=trim(left(id))||'_'||trim(left(segment));
run;

/* generate some random/fake data, for the demo */
/*data grid_data;
do grid_lat=31.5 to 37 by .25;
 do grid_long=-109 to -103 by .25;
  count=round(ranuni(123)*5);
  output;
  end;
 end;
run;*/

data city_data; set mapsgfk.uscity (where=(statecode='NM' and pop_type^='under10k'));
city_long=long;
city_lat=lat;
citylabel=city;
/*if capital='Y' then citylabel=city;*/
run;

data all_csrnmdata; set my_map city_data dec20.csrnm;
run;

 

title h=12pt "SGPlot: 'Heatmap' grid overlayed on map polygons";
proc sgplot data=all_csrnmdata noborder noautolegend;
polygon x=long y=lat id=id_plus_segment / tip=none
   nofill outline lineattrs=(color=black);
scatter x=city_long y=city_lat / markerattrs=(color=blue)
   datalabel=citylabel datalabelpos=right datalabelattrs=(color=blue);
heatmap x=lng1 y=lat1  / name="heatmap" nxbins=30 nybins=30
outline outlineattrs=(color=graycc) transparency=.6
   colormodel=(cxfeebe2 cxfbb4b9 cxf768a1 cxc51b8a cx7a0177);
gradlegend 'HeatMap' ;
/*heatmapparm x=lng1 y=lat1 colorresponse=count /
   outline outlineattrs=(color=graycc) transparency=.6
   colormodel=(cxfeebe2 cxfbb4b9 cxf768a1 cxc51b8a cx7a0177);*/
/*text x=grid_long y=grid_lat text=count;remove code that puts count data in each heatmap element*/
gradlegend;
xaxis display=(nolabel);
yaxis display=(nolabel);
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 27 Jan 2021 01:00:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Heatmap-with-geographic-features/m-p/714455#M20992</guid>
      <dc:creator>genemroz</dc:creator>
      <dc:date>2021-01-27T01:00:36Z</dc:date>
    </item>
    <item>
      <title>Re: Heatmap with geographic features?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Heatmap-with-geographic-features/m-p/714461#M20993</link>
      <description>Lack of projection so it's been flattened. I don't know how to fix that within SGPLOT only SGMAP.</description>
      <pubDate>Wed, 27 Jan 2021 01:25:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Heatmap-with-geographic-features/m-p/714461#M20993</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2021-01-27T01:25:42Z</dc:date>
    </item>
    <item>
      <title>Re: Heatmap with geographic features?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Heatmap-with-geographic-features/m-p/714532#M20994</link>
      <description>&lt;P&gt;Whereas the mapping procedures (sgmap and gmap) preserve the x/y proportions, sgplot will 'stretch' the graph to fit the available area. In your case, you could move your legend to the right-hand side, which would allow the graph axes to get bigger in the y-direction (and it would also 'squeeze' the graph in the x-direction). Or you could change the size/proportions of your output area.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In short, you have to control the proportions of your sgplot, such that the map will 'look right'.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 27 Jan 2021 12:09:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Heatmap-with-geographic-features/m-p/714532#M20994</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2021-01-27T12:09:30Z</dc:date>
    </item>
  </channel>
</rss>

