<?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: Looking for resource's on creating heat maps. in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/Looking-for-resource-s-on-creating-heat-maps/m-p/627961#M19515</link>
    <description>&lt;P&gt;If you're wanting to plot the data on an image of the lake, then as Reeza said, Proc SGmap would be the easiest way to start.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here's an example:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;data my_data;&lt;BR /&gt;length fish_type $50;&lt;BR /&gt;input lat long fish_type;&lt;BR /&gt;datalines;&lt;BR /&gt;35.742384 -79.0091287 Catfish&lt;BR /&gt;35.7641991 -79.047054 Crappie&lt;BR /&gt;35.7497305 -79.0075478 Crappie&lt;BR /&gt;35.7543135 -78.9978178 Bass&lt;BR /&gt;;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc sgmap plotdata=my_data;&lt;BR /&gt;/*&lt;BR /&gt;esrimap url="&lt;A href="http://services.arcgisonline.com/arcgis/rest/services/World_Imagery" target="_blank"&gt;http://services.arcgisonline.com/arcgis/rest/services/World_Imagery&lt;/A&gt;";&lt;BR /&gt;*/&lt;BR /&gt;esrimap url="&lt;A href="http://services.arcgisonline.com/arcgis/rest/services/World_Topo_Map" target="_blank"&gt;http://services.arcgisonline.com/arcgis/rest/services/World_Topo_Map&lt;/A&gt;";&lt;BR /&gt;scatter y=lat x=long / group=fish_type markerattrs=(symbol=circlefilled size=10pt);&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="SGMap10.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/36442iFE546675CE8B6FF4/image-size/large?v=v2&amp;amp;px=999" role="button" title="SGMap10.png" alt="SGMap10.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 27 Feb 2020 16:06:24 GMT</pubDate>
    <dc:creator>GraphGuy</dc:creator>
    <dc:date>2020-02-27T16:06:24Z</dc:date>
    <item>
      <title>Looking for resource's on creating heat maps.</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Looking-for-resource-s-on-creating-heat-maps/m-p/627306#M19504</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm an avid bass fisherman and was curious on what type of statistics I could get on catches in certain areas around a lake.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I've seen heat maps such as the US; such as what is shown here:&amp;nbsp;&lt;A href="https://support.sas.com/resources/papers/proceedings17/SAS0312-2017.pdf" target="_blank"&gt;https://support.sas.com/resources/papers/proceedings17/SAS0312-2017.pdf&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I know very little about this but what I would like is to understand:&lt;/P&gt;
&lt;P&gt;How I can grab an image of a lake&lt;/P&gt;
&lt;P&gt;How can I plot coordinates to the above image&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The log would basically have pretty standard fishing data: Season, Air Temp, Water Temp, Latitude, longitude location, fish type, fish size.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If anyone has any information on this, or even an alternative, I would very much appreciate it. If I caused confusion and can expand on anything just let me know.&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;</description>
      <pubDate>Tue, 25 Feb 2020 19:47:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Looking-for-resource-s-on-creating-heat-maps/m-p/627306#M19504</guid>
      <dc:creator>Krueger</dc:creator>
      <dc:date>2020-02-25T19:47:55Z</dc:date>
    </item>
    <item>
      <title>Re: Looking for resource's on creating heat maps.</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Looking-for-resource-s-on-creating-heat-maps/m-p/627324#M19505</link>
      <description>Google SGMAP</description>
      <pubDate>Tue, 25 Feb 2020 20:54:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Looking-for-resource-s-on-creating-heat-maps/m-p/627324#M19505</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2020-02-25T20:54:09Z</dc:date>
    </item>
    <item>
      <title>Re: Looking for resource's on creating heat maps.</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Looking-for-resource-s-on-creating-heat-maps/m-p/627961#M19515</link>
      <description>&lt;P&gt;If you're wanting to plot the data on an image of the lake, then as Reeza said, Proc SGmap would be the easiest way to start.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here's an example:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;data my_data;&lt;BR /&gt;length fish_type $50;&lt;BR /&gt;input lat long fish_type;&lt;BR /&gt;datalines;&lt;BR /&gt;35.742384 -79.0091287 Catfish&lt;BR /&gt;35.7641991 -79.047054 Crappie&lt;BR /&gt;35.7497305 -79.0075478 Crappie&lt;BR /&gt;35.7543135 -78.9978178 Bass&lt;BR /&gt;;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc sgmap plotdata=my_data;&lt;BR /&gt;/*&lt;BR /&gt;esrimap url="&lt;A href="http://services.arcgisonline.com/arcgis/rest/services/World_Imagery" target="_blank"&gt;http://services.arcgisonline.com/arcgis/rest/services/World_Imagery&lt;/A&gt;";&lt;BR /&gt;*/&lt;BR /&gt;esrimap url="&lt;A href="http://services.arcgisonline.com/arcgis/rest/services/World_Topo_Map" target="_blank"&gt;http://services.arcgisonline.com/arcgis/rest/services/World_Topo_Map&lt;/A&gt;";&lt;BR /&gt;scatter y=lat x=long / group=fish_type markerattrs=(symbol=circlefilled size=10pt);&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="SGMap10.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/36442iFE546675CE8B6FF4/image-size/large?v=v2&amp;amp;px=999" role="button" title="SGMap10.png" alt="SGMap10.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 27 Feb 2020 16:06:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Looking-for-resource-s-on-creating-heat-maps/m-p/627961#M19515</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2020-02-27T16:06:24Z</dc:date>
    </item>
    <item>
      <title>Re: Looking for resource's on creating heat maps.</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Looking-for-resource-s-on-creating-heat-maps/m-p/627980#M19517</link>
      <description>&lt;P&gt;Thanks this is very cool! I definitely need to investigate all of this further as what I had in mind regarding a topo map was to show the contour lines of the lake. Example here: "&lt;A href="https://webapp.navionics.com/#boating@11&amp;amp;key=otlhFtwduP" target="_blank"&gt;https://webapp.navionics.com/#boating@11&amp;amp;key=otlhFtwduP&lt;/A&gt;"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Maybe there's a way to add this as a second layer. Regardless I appreciate all the info and the examples are great.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 27 Feb 2020 16:57:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Looking-for-resource-s-on-creating-heat-maps/m-p/627980#M19517</guid>
      <dc:creator>Krueger</dc:creator>
      <dc:date>2020-02-27T16:57:49Z</dc:date>
    </item>
  </channel>
</rss>

